版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、,MSC.Nastran DMAP 教案,MSC公司成都辦事處,June, 2004,2,What will be covered?,概要 DMAP綜述 參數(shù)(PARAM) 及其應(yīng)用 DMAP 模塊 如何向程序傳遞信息 如何讀寫矩陣 如何使用矩陣 subDMAPs - 現(xiàn)有求解序列形式 DMAP 改變 - 修改現(xiàn)有求解序列,矩陣分解- how and why 打印輸出OUTPUT Printed OUTPUT 用標(biāo)準(zhǔn)輸出打印輸出數(shù)據(jù)Calculating and printing data using standard output 數(shù)據(jù)庫The database 信息的存儲(chǔ) Storing
2、information The NDDL ISHELL 用戶提供的程序user-provided routines,3,Whats Next?,概要 DMAP綜述 參數(shù)(PARAM) 及其應(yīng)用 INPUT 模塊 如何向程序傳遞信息 How to get information into the program 如何讀寫矩陣 How to read and write Matrices 如何使用矩陣 How to manipulate matrices subDMAPs - 現(xiàn)有求解序列形式 The form of the existing solutions DMAP alters -改變 修
3、改現(xiàn)有求解序列 Modifying the existing solutions,Partitioning - how and why 打印輸出OUTPUTPrinted OUTPUT 用標(biāo)準(zhǔn)輸出打印輸出數(shù)據(jù)Calculating and printing data using standard output 數(shù)據(jù)庫 The database 信息的存儲(chǔ) Storing information The NDDL ISHELL 用戶提供的程序 user-provided routines,4,概要-綜述與基本語法General - an Overview and the Basics Rules
4、,5,何為DMAPWhat Is DMAP,直接矩陣提取程序 Direct Matrix Abstraction Programming 與Fortran程序類似Similar to FORTRAN 提供MSC.Nastran功能的完全使用Provides full access to the functions of MSC.Nastran 該語言用于MSC.Nastran的所有SolutionThe language used for all solutions in MSC.Nastran,6,DMAP的功能What Can I Do With DMAP?,修改MSC提供的Solutio
5、n Modify the MSC-provided solutions 增加附加輸出add additional output 計(jì)算附加量calculate additional quantities 改變問題的求解方法 change the way the problem is solved 改變MSC數(shù)據(jù)庫 Access the MSC database 儲(chǔ)存后續(xù)計(jì)算所需要的信息Store information for later use 為其他應(yīng)用提取信息Retrieve information for use in other applications 在Nastran執(zhí)行時(shí),運(yùn)行外
6、部程序 Run external programs (spawn a process) during the MSC.Nastran execution,7,兩類DMAP指令Two Types of DMAP INSTRUCTIONS,語句進(jìn)行參數(shù)操作或求解控制(類似于Fortran的一行) Statements - perform parameter operations or solution control (similar to a single line of FORTRAN) 例子: if(A5)B=C+3 $ 模塊對(duì)矩陣或表格操作(與Fortran中,用Call調(diào)用的子程序類似)
7、 Modules - perform operations on matrices or tables (similar to a subroutine call in FORTRAN) 例子: MPYAD A,B,/C $進(jìn)行矩陣計(jì)算C=AB,8,DMAP指令格式Format of DMAP Instructions,所有DMAP指令是自由格式 All DMAP instructions are free-format 位于1-72列 they may use columns 1-72 不必從第一列開始they do not need to start in column 1 以$為結(jié)束標(biāo)志
8、they end with a dollar sign $ 如需要,可以使用多行,但應(yīng)以“/”,“,”或不平衡的圓括號(hào)為續(xù)行標(biāo)志 If needed they may be more than one line long If so, the line must end with a slash (/) or comma (,) or must have unbalanced parentheses 例子: MESSAGE /this is a sample of a dmap statement/ which spans more than one line $,9,帶參數(shù)、表格,矩陣的DM
9、AP指令DMAP Instructions Work With Parameters, Tables, and Matrices,命名約定Naming convention 名稱由1-8個(gè)字符組成,字符A-Z,0-9可用 names are alphanumeric using from 1 to 8 characters, the characters A-Z and 0-9 may be used 以字符A-Z開頭names must start with a letter A-Z 合法的命名: AMATRIX TEST1 合法的命名: 1TIME ALONGNAME TERM3,1,10
10、,參數(shù)Parameters,參數(shù)用于Parameters are used for: 計(jì)算calculations A = B + 3. $ 程序控制program control IF(A3.)THEN $ 模塊間傳遞信息passing information between modules PARAML CASES/DTI/1/149/S,N,SDAMP $ (從表格CASES的第1記錄的第149字提取值保存在參數(shù)SDMAP中,并且不能通過情況控制卡改變) 識(shí)別qualifiers 用于識(shí)別數(shù)據(jù)庫中的信息( SEID, PEID, MPC, SPC等)used to identify in
11、formation stored in the database (SEID, PEID, MPC, SPC, etc),11,參數(shù)(續(xù))Parameters (Cont),參數(shù)是取單值的可變量Parameters are variables with a single value 有效參數(shù)類型如下Allowable Types of Parameter are as follows: 整型Integer ,(I) - 1 單精度實(shí)型Real-single precision ,(RS) - 1.23 雙精度實(shí)型Real-double precision (RD) - 1.23D-01 單精度
12、復(fù)型Complex-single precision, (CS) - (1.0,.12)= 1. + .12i 雙精度復(fù)型Complex-double precision(CD) - (1.3d3,1.23D04) 字符型Character ,(Chari) 其中,i為字符數(shù)where i is the number of characters - MY NAME (CHAR7) 邏輯型Logical ,(LOGICAL) - TRUE,12,矩陣與表格Matrices and Tables,MSC.Nastran中使用的信息為矩陣或表格形式Information used in MSC.Na
13、stran is in the form of either matrices or tables 從輸入文件得到的信息轉(zhuǎn)化為表格Information from your input file is converted into tables 這些表格用于產(chǎn)生質(zhì)量、剛度、阻尼、載荷矩陣 These tables are used to generate mass, stiffness, damping, and loading matrices 程序調(diào)用這些矩陣求解問題These matrices are used by the program to solve the problem,13
14、,矩陣與表格(續(xù))Matrices and Tables(cont.),求解結(jié)束后,用矩陣建立表格,將表格打印輸出、繪圖、或?qū)懭胛募楹筇幚沓绦蚴褂?Once the solution is known, the matrices are used to create tables which will be printed, plotted, and/or written into a file for a post-processing program to use 所有矩陣和表格由DMAP模塊建立 All matrices and tables are created by DMAP m
15、odules 矩陣和表格不能用于輸入,除非他們是前一模塊的輸出They may not be used as input unless they have been already used as output from a previous module 一條重要定理是:輸出輛次。通常,一個(gè)矩陣或表格用于輸出僅一次。如果要在一個(gè)DMAP模塊中試圖建立一個(gè)已經(jīng)建立好的矩陣,將出現(xiàn)致“FATAL”信息。An important rule is “output-twice” in general, a matrix or table may be used as output only one t
16、ime. If a DMAP module attempts to create a matrix which has already been created, a FATAL message will occur,14,矩陣與表格(續(xù))Matrices and Tables(cont.),所有矩陣和表格都可作為“輸出” All matrices and tables are available for “output” 標(biāo)準(zhǔn)輸出(應(yīng)力、位移等)Some are standard output (stresses, displacements, etc) 僅內(nèi)部使用(如矩陣)Some are
17、 used internally only (matrices) 輸出進(jìn)行后處理(幾何、單元特性,材料等) Some are written out for Post-processors (geometry, element properties, materials, etc) 矩陣采用標(biāo)準(zhǔn)格式 Matrices follow a standard format 表格有許多不同的可能形式 Tables have many different formats possible 參考DMAP模塊目錄或NDDL表,查詢標(biāo)準(zhǔn)表格式 See the DMAP Module Dictionary or
18、 a listing of the NDDL to see the format of the standard tables,15,DMAP模塊格式DMAP Module Format,調(diào)用DMAP模塊的標(biāo)準(zhǔn)格式如下 The standard form for the call to a DMAP module uses the following format: module_name input_list/output_list/ param1/param2/param3.$ input_list =輸入表格與矩陣,用“,”分開 list of input tables and matr
19、ices - separated by commas output_list =輸出表格與矩陣,用“,”分開 list of output tables and matrices - separated by commas parami = 該模塊的輸入、輸出參數(shù) parameters used as input and/or output by the module 如果一個(gè)參數(shù)從該模塊輸出,應(yīng)在其前加上“S,N,” or “S,Y” ; 一個(gè)例外是:如模塊中第一次出現(xiàn)該參數(shù),這時(shí)應(yīng)在DMAP語句處給該參數(shù)一缺損值If a parameter is to be output from the
20、 module it must be preceded by “S,N,” or “S,Y” (the only exception to this rule is if the module is the first occurrence of the parameter, in which case the parameter is given the default value for that location on the DMAP statement),Notice the slashes,16,DMAP模塊(續(xù))DMAP Modules (Cont),例子: ADD A1,B23
21、/C123/param1/param2 $ 該模塊以矩陣A1、B23為輸入,矩陣C123為輸出,param1、param2為模塊輸入?yún)?shù) this module uses matrices A1 and B23 as input, produces matrix C123 as output. Parameters param1 and param2 are used as input to the module,17,如何使用DMAPHow Do I Use DMAP?,所有DMAP指令位于NASTRAN輸入文件執(zhí)行控制段 All DMAP is done in the executive
22、control section of the input file 可以修改任何已有的SOLs或建立自己的SolutionYou may either modify the any of the existing SOLs or create your own solution 修改已有的SOL,使用ALTERs To modify an existing solution, use “alters” (described later) 建立自己的Solution ,用“MAIN” subDMAPcreate your own solution, create your own “MAIN”
23、subDMAP,18,DMAP Solution一般格式General Form of a DMAP Solution,MSC.Nastran中的每個(gè)Solution 由一個(gè)MAIN subDMAP 和若干個(gè)可能的called subDMAPs Each Solution in MSC.Nastran consists of a MAIN subDMAP and (possibly) a number of called subDMAPs subDMAP與Fortran中子程序類似 A subDMAP is very similar to a FORTRAN subroutine 是DMAP指
24、令的集合 It is an assembly of DMAP instructions with a purpose 可以被其他subDMAPs調(diào)用It may be called from other subDMAPs 本身可以是一個(gè)完整的Solution It may be a complete solution by itself 可以作為其它Solution的一部分 It may be used as a part of many solutions,19,MAIN subDMAP 格式Form of a MAIN subDMAP,MAIN subDMAP 必須用subDMAP語句開始
25、,最后一行必須為“END”語句 A MAIN subDMAP must start with a SUBDMAP statement and the final line must be an END statement 上述兩語句間,包含一系列DMAP指令形成了一個(gè)Solution In between these statements, a series of DMAP instructions are combined to create a solution,20,SUBDMAP語句格式The Form of the SUBDMAP Statement for a MAIN subDM
26、AP,SUBDMAP name 其中,name為subDMAP or SOLution 名稱 where name is the name of the subDMAP or SOLution Name不超過8個(gè)字符 name must be 8 or fewer characters in length 可以用字母和整數(shù)alphanumeric characters and integers may be used 第一字符為字母the first character must be alphanumeric 例子 SUBDMAP TED1,21,如何建立SolutionHow to Cre
27、ate a Solution,建立一個(gè)MAIN subDMAP Create a MAIN subDMAP 使用COMPILE語句編譯 use a “COMPILE” statement to compile it COMPILE 語句格式 Format of the COMPILE statement (simplified) COMPILE name, (LIST), (DECK), (REF) name = subDMAP 名稱subDMAP name LIST = 在“.f06”文件中給出清單(可選)provide a listing in the “.f06” file (optio
28、nal) DECK =在“punch”文件中給出清單(可選) provide a listing in the “punch” file (optional REF =編譯時(shí)給出參考備查表provide cross-reference table when compiling,22,如何運(yùn)行SOLutionHow to Run a SOLution,當(dāng)前運(yùn)行的Solution 通過執(zhí)行控制段中的“SOL”語句執(zhí)行 The solution used in the current run is chosen by the “SOL” statement in the executive cont
29、rol section 格式: SOL name(, noexe) name = MAIN subDMAP 名稱或數(shù)字(只有MSC.Nastran本身提供的Solution才能用數(shù)字)MAIN subDMAP name or number (numbers are allowed only for MSC-provided solutions) noexe =隸屬該Solution,但不執(zhí)行 (可選) to attach the solution, but not run it (optional - can be helpful when creating a solution, allow
30、s you to compile and list (but not run) the solution 例子: SOL TED1,23,Sample SOLution,SOL TED1 COMPILE TED1 SUBDMAP TED1 $ $ 具體DMAP SOLUTION位置The actual DMAP solution goes here $ END $ CEND,24,Whats Next?,概要 DMAP綜述 參數(shù)(PARAM) 及其應(yīng)用 INPUT 模塊 如何向程序傳遞信息 How to get information into the program 如何讀寫矩陣 How t
31、o read and write Matrices 如何使用矩陣 How to manipulate matrices subDMAPs - 現(xiàn)有求解序列形式 The form of the existing solutions DMAP alters -改變 修改現(xiàn)有求解序列 Modifying the existing solutions,Partitioning - how and why 打印輸出OUTPUTPrinted OUTPUT 用標(biāo)準(zhǔn)輸出打印輸出數(shù)據(jù)Calculating and printing data using standard output 數(shù)據(jù)庫 The data
32、base 信息的存儲(chǔ) Storing information The NDDL ISHELL 用戶提供的程序 user-provided routines,25,參數(shù)Parameters,參數(shù)用于Parameters are used for: 計(jì)算calculations A = B + 3. $ 程序控制program control IF(A3.)THEN $ 模塊間傳遞信息passing information between modules PARAML CASES/DTI/1/149/S,N,SDAMP $ 識(shí)別qualifiers 用于識(shí)別數(shù)據(jù)庫中的信息(SEID,PEID,SP
33、C,MPC等)used to identify information stored in the database (SEID, PEID, MPC, SPC, etc),26,參數(shù)定義Defining Parameters,參數(shù)使用前必須進(jìn)行定義 before a parameter can be used it must be defined to the program 例外:在DMAP模塊中,參數(shù)第一次出現(xiàn)(在這種情況下,參數(shù)值為模塊提供的缺損值)exception - if the first occurrence of a parameter is in a DMAP modul
34、e (in this case, the parameter will assume the default value provided by the module) 參數(shù)由“TYPE”語句定義Parameters are defined by using a “TYPE” statement,27,定義參數(shù)的“TYPE”語句格式Format of the “TYPE” statement when defining Parameters,TYPE PARM,(nddl),(type),(y/n),param1(=default), param2(=default),. 其中: nddl 表
35、明參數(shù)可以用作定界符或可以存儲(chǔ)在數(shù)據(jù)庫中 indicates a parameter which may be stored on the database or used as a qualifier type =參數(shù)類型說明,I,RS,RD,CS,CD,CHARi,LOGICAL I(Integer), RS(real-Single precision), RD(Real-Double precision), CS(Complex-Single precision), CD(Complex-Double precision), CHARi(CHARacter), LOGICAL - ind
36、icates the type of parameter y/n =表明是否參數(shù)值可以通過輸入獲得(情況控制或數(shù)據(jù)集) indicates if the value of the parameter may be obtained from the input (Case Control or Bulk Data) parami(=default) 參數(shù)名稱與缺損值name of the parameter and default value (if desired),28,定義參數(shù)例子Sample Parameter declarations,TYPE PARM,I,N,flag=0 $ 定
37、義整型參數(shù)FLAG,其值不能通過情況控制或模型數(shù)據(jù)集改變,缺損值為0defines an integer parameter, FLAG, which may not be changed by case control or bulk data. The default value is FLAG=0 TYPE PARM,RS,Y,WTMASS=.002588 $ 定義實(shí)型單精度參數(shù),WTMASS,缺損值為0.002588,其值可以通過情況控制或模型據(jù)集改變defines a real-single precision parameter (WTMASS) with a default va
38、lue of .002588 - the value may be changed by case control or bulk data,29,參數(shù)聲明例子Sample Parameter declarations,TYPE PARM,CHAR8,N,name=TED 定義字符參數(shù)name,長(zhǎng)度為8,缺損值為TED,不能通過情況控制或模型數(shù)據(jù)集改變defines a character parameter which may not be changed by case control or bulk data - the length is 8 characters and the de
39、fault value is TED ( indicates a blank) TYPE PARM,NDDL,I,N,SEID 定義整型參數(shù)SEID,定義在NDDL(Nastran Data Defination Language) 中,不能通過情況控制或模型數(shù)據(jù)集的Param語句改變Defines a parameter named SEID which is an integer, is defined in the NDDL (see section on the NDDL) and may not be changed by a PARAM statement in the bulk
40、data or case control,30,保留參數(shù)Pre-defined PARAMeters,在MSC.NASTRAN中,有若干個(gè)保留參數(shù)There are a number of pre-defined parameters inside MSC.Nastran 不用TYPE語句定義就可以使用這些參數(shù);但其值不能改變,因?yàn)镸SC.Nastran本身提供的Solution都與這些值有關(guān)You may use these without a TYPE statement, but DO NOT CHANGE THEIR VALUE, the MSC-provided solutions
41、depend on the values,31,參數(shù)算法Parameter Arithmetic,可以通過如下方式給參數(shù)賦值:A value may be assigned to a Parameter by: TYPE 語句可以提供缺損值A(chǔ) TYPE statement - can provide a default value DMAP模塊程序中許多模塊除有矩陣和表格外,還有作為輸出值的參數(shù)。A DMAP Module - many of the modules in the program have Parameters as output values in addition to m
42、atrices and tables 在情況控制或數(shù)據(jù)集中的PARAm卡片A PARAM entry in either the bulk data or case control Ex: PARAM,GRDPNT,100 (以節(jié)點(diǎn)100為參考點(diǎn),計(jì)算質(zhì)量的輸出特性) 賦值語句An ASSIGNMENT statement A = B + 3. $,32,賦值語句ASSIGNMENT Statements,賦值語句首先計(jì)算表達(dá)式的值,然后將其值賦給參數(shù)Assignment statements evaluate an expression and place the results into
43、a parameter value 賦值語句格式與標(biāo)準(zhǔn)Fortran相同The form of an assignment statement is very similar to standard FORTRAN v = e $ v = output parameter e = expression 賦值語句不允許“混合模式”操作Assignment statements do not allow “mixed-mode” operations 表達(dá)式中所有值必須是相同類型的參數(shù)all values in the expression must be the same type as the
44、 parameter result 可以用類型轉(zhuǎn)換函數(shù)將數(shù)據(jù)從一種類型轉(zhuǎn)化為另一種類型There are “conversion” functions to convert data from one type to another,33,賦值語句(續(xù))Assignment Statements (cont),賦值語句例子Some example Assignment statements TYPE PARM,I,N,AXIS,B,C TYPE PARM,RS,N,D,E,F TYPE PARM,LOGICAL,N,G,H AXIS = 3 $ B = B + C * 3 + 2 $ D =
45、3.2 $ E = D*2 + F*1.8 $ G = TRUE $,34,函數(shù)Functions,賦值語句中的表達(dá)式可以包含函數(shù)The expressions on assignment statements may contain function S 函數(shù)與標(biāo)準(zhǔn)Fortran表達(dá)式類似 Functions look very much like standard FORTRAN expressions,35,一些函數(shù)Some Functions,ABS(x) ACOS(X), ASIN(x), ATAN(x), ATAN2(x,y) ACOSH(x), ASINH(x), ATANH(x
46、), ATANH2(x,y) CHAR(x)(字符ASCII碼轉(zhuǎn)為字符) CLEN(x)(x的字符數(shù)) CLOCK()(自工作開始后的CPU時(shí)間 ,單位秒) CMPLX(x)=(real(x),imag(x) COS(x), SIN(x), TAN(x), TAN2(x,y),COSH(x), SINH(x), TANH(x) DBLE(x)轉(zhuǎn)換為雙精度 EXP(x) IMAG(x), REAL(x) INT(x) LOG(x), LOG10(x) MAX(x1,x2,), MIN(x1,x2,) RAND(x)以x為種子產(chǎn)生隨機(jī)數(shù) SQRT(x),共計(jì)86個(gè)函數(shù),36,如何打印參數(shù)值How
47、to Print PARAMeter Values,打印參數(shù)值最簡(jiǎn)單方法是用MESSAGE語句The easiest way to print the value of a parameter is the MESSAGE statement 允許在打印任何參數(shù)值時(shí),同時(shí)打印文本Allows you to print the value of any parameters, along with your own text 當(dāng)執(zhí)行MESSAGE語句時(shí),通過MESSAGE語句打印的任何內(nèi)容將出現(xiàn)在“.f06”文件中Anything printed by a MESSAGE statement w
48、ill appear in the “.f06” file when the MESSAGE statement is executed 設(shè)置DIAG 53 可以將用MESSAGE語句打印的內(nèi)容輸出到“.f04”文件中If you would like, output from the MESSAGE statements may also be printed in the “.f04” file by setting DIAG 53,37,MESSAGE語句,MESSAGE語句格式: MESSAGE /parm1/parm2/parm2/parm4/. $ parmi 為保留參數(shù)名,或用戶
49、希望打印文本(以“”為定界符) 例子: MESSAGE / The value of parameter SEID =/SEID $ MESSAGE語句的輸出前面總是有“” 如果SEID值為1,上述語句輸出為 THE VALUE OF PARAMETER SEID = 1,38,參數(shù)應(yīng)用的例子Sample using Parameters,下頁為一個(gè)“自包含”MSC.Nastran輸入文件The following page shows a self-contained MSC.Nastran input file 它執(zhí)行一個(gè)用戶建立的Solution:SHOWPARM It is runni
50、ng a user-created solution called SHOWPARM COMPILE語句要求一個(gè)Solution列表The COMPILE statement requests a listing of the solution 在該例子中,使用簡(jiǎn)單賦值語句For this example, we are using simple assignment statements,39,SOL SHOWPARM $ COMPILE SHOWPARM, LIST $ SUBDMAP SHOWPARM $ $ DECLARE PARAMETERS $ TYPE PARM,I,N,A,B,
51、C TYPE PARM,RS,N,D=5.,E=10.,F $ SET INTIAL VALUES FOR D AND E TYPE PARM,CHAR8,N,NAME $ B = 3 $ C = 4 $ A = B + C $,40,MESSAGE / $ BLANK LINE MESSAGE /A = /A/ B = /B/ C = /C $ F = D*E + 1.2 $ MESSAGE / $ MESSAGE /D = /D/ E = /E/ F = /F $ $ NAME = TED ROSE $ MESSAGE / $ MESSAGE / NAME = /NAME $ END CE
52、ND BEGIN BULK ENDDATA,41,SHOWPARM 的輸出Output from SHOWPARM,執(zhí)行該程序,首先給出一個(gè)Solution列表,然后輸出結(jié)果This run will provide a listing of the solution, then the output 注意:在該列表中,為每一個(gè)執(zhí)行指令賦予一個(gè)行號(hào)Notice that in the listing, a line number is assigned to each executable instruction 注意:如果一行為注釋語句(以($開始),不會(huì)給出一個(gè)新行號(hào))Notice tha
53、t if a line is a comment statement (begins with a $) then it does not get a new line number,42,SHOWPARM 的輸出Output from SHOWPARM,N A S T R A N E X E C U T I V E C O N T R O L D E C K E C H O SOL SHOWPARM $ COMPILE SHOWPARM, LIST $ (SEE NASTRAN SOURCE PROGRAM COMPILATION FOR LISTING OF DMAP SEQUENCE)
54、END CEND,43,N A S T R A N S O U R C E P R O G R A M C O M P I L A T I O N SUBDMAP = SHOWPARM DMAP-DMAP INSTRUCTION NO. 1 SUBDMAP SHOWPARM 2 $ 2 $ DECLARE PARAMETERS 2 $ 2 TYPE PARM,I,N,A,B,C 3 TYPE PARM,RS,N,D=5.,E=10.,F $ SET INTIAL VALUES FOR D AND E 4 TYPE PARM,CHAR8,N,NAME 5 $ 5 B = 3 $ 6 C = 4
55、$ 7 A = B + C $ 8 MESSAGE / $ BLANK LINE 9 MESSAGE /A = /A/ B = /B/ C = /C $ 10 $ 10 F = D*E + 1.2 $ 11 MESSAGE / $ 12 MESSAGE /D = /D/ E = /E/ F = /F $ 13 $ 13 NAME = TED ROSE $ 14 MESSAGE / $ 15 MESSAGE / NAME = /NAME $ 16 END,44,SHOWPARM 的輸出Output from SHOWPARM, A = 7 B = 3 C = 4 D = 5.000000E+00
56、 E = 1.000000E+01 F = 5.120000E+01 NAME = TED ROSE * * * END OF JOB * * *,45,“.f04”文件的選擇輸出Selected Output from the “.f04” File,下頁是執(zhí)行概要文件(“.F04”) 的部分內(nèi)容The following page is from the execution summary (“.f04”) file 該文件提供了MSC.Nastran的程序執(zhí)行過程概要This file provides a “road-map” to MSC.Nastran execution 具體語句
57、不會(huì)出現(xiàn)在“.f04”文件中,除非設(shè)置了DIAG 56(下頁為設(shè)置了DIAG卡片后,輸出文件一部分)Statements do not appear in the “.f04” file unless DIAG 56 is set (the following page is from output with this DIAG set),46,showparm.f04,DAY TIME ELAPSED I/O MB DEL_MB CPU SEC DEL_CPU SUB_DMAP/DMAP_MODULE MESSAGES 19:34:26 0:00 3.8 0.4 0.3 0.0 SHOWPARM 5 B BEGN 19:34:26 0:00 3.9 0.1 0.3 0.0 SHOWPARM 6 C BEGN 19:34:26 0:00 3.9 0.0 0.3 0.0 SHOWPAR
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 醫(yī)院醫(yī)??颇甓裙ぷ骺偨Y(jié)
- 退役軍人服務(wù)保障體系標(biāo)準(zhǔn)化建設(shè)
- 求職者面試技巧全套教程
- 一般工貿(mào)行業(yè)新員工三級(jí)安全培訓(xùn)考試試題及答案
- 建設(shè)工程施工合同糾紛要素式起訴狀模板修改無約束
- 不用熬夜寫!建設(shè)工程施工合同糾紛要素式起訴狀模板現(xiàn)成用
- 保險(xiǎn)講師培訓(xùn)
- 環(huán)境友好催化技術(shù)課件
- 調(diào)色年終總結(jié)和配料(3篇)
- 公務(wù)員法執(zhí)行情況自查報(bào)告
- 2026年游戲AB測(cè)試實(shí)施方法含答案
- 2025湖南湘西鶴盛原煙發(fā)展有限責(zé)任公司招聘擬錄用人員筆試歷年備考題庫附帶答案詳解
- 江蘇省2025年普通高中學(xué)業(yè)水平合格性考試英語試卷(含答案)
- 枕骨骨折的護(hù)理課件
- TCEC電力行業(yè)數(shù)據(jù)分類分級(jí)規(guī)范-2024
- 駱駝的養(yǎng)殖技術(shù)與常見病防治
- GB/T 26951-2025焊縫無損檢測(cè)磁粉檢測(cè)
- 2025及未來5-10年高壓管匯項(xiàng)目投資價(jià)值市場(chǎng)數(shù)據(jù)分析報(bào)告
- 腹部手術(shù)圍手術(shù)期疼痛管理指南(2025版)課件
- 2025年衛(wèi)生人才評(píng)價(jià)考試(臨床醫(yī)學(xué)工程技術(shù)中級(jí))歷年參考題庫含答案
- 呼吸康復(fù)科普脫口秀
評(píng)論
0/150
提交評(píng)論