- 1、本文档共46页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
单元高斯点应力和单元节点应力其中
FORTRAN 90 简介 程序结构 Main program Subroutine Function Module Main program program lefemd use globaldata implicit real*8(a-h,o-z),integer (i-n) character*800 buffer,ARCHITECT character*250 infile,outfile,errorstring ARCHITECT = OConnor, Emerson, and Davis Associates integer errorcode infile=E:\fortran\Console1\Debug\beam8.dat outfile=E:\fortran\Console1\Debug\beam 8.out call openfile(infile,outfile) call timeanddate !get time cost ……………. end program lefemd Subroutine subroutine openfile(infile,outfile) ! this subroutine opens files for input and output character*250 infile,outfile open(5,file=infile,status=old) open(6,file=outfile,status= unknown) end subroutine Function INTEGER FUNCTION Divby2 (num) Divby2=num / 2 END FUNCTION Module module types type femmodel character*20 name integer model integer nnode integer ngaus end type endmodule types module globaldata use types implicit real*8(a-h,o-z),integer (i-n) ! define global variables and arrays integer npoin,nelem,ndime,ndofn, ntotv,nvfix type(femmodel), allocatable:: models(:) end module globaldata Data Types and Variables: INTEGER INTEGER([KIND=]1) or INTEGER*1 INTEGER([KIND=]2) or INTEGER*2 INTEGER([KIND=]4) or INTEGER*4 INTEGER([KIND=]8) or INTEGER*8 INTEGER*1 等价于 BYTE Example: INTEGER*4 nn,mm Byte a,b Data Types and Variables: REAL REAL([KIND=]4) or REAL*4 REAL([KIND=]8) or REAL*8 REAL([KIND=]16) or REAL*16 REAL*8 等价于 DOUBLE PRECISION Example: REAL*4 a,b DOUBLE PRECISION a(100),bb Data Types and Variables: COMPLEX COMPLEX([KIND=]4) or COMPLEX*8 COMPLEX([KIND=]8) or COMPLEX*16 COMPLEX([KIND=]16) or COMPLEX*32 DOUBLE COMPLEX等价于 COMPLEX*16 Example: COMPLEX*16 a,b DOUBLE COMPLEX a(100),bb Data Types and Variables: LOGICAL LOGICAL([KIND=]1) or LOGICAL*1 LOGICAL([KIND=]2) or LOGICAL*2 LOGICAL([KIND=]4) or LOGICAL*4 LOGICAL([KIND=]8) or LOGICAL*8 Example: LOGICAL*1 a,b Data Types and Variables: CHA
文档评论(0)