你已经派生过 tem3dfdtd-open
镜像自地址
https://gitee.com/sunhf/tem3dfdtd-open.git
已同步 2025-08-06 04:36:52 +08:00
initial
这个提交包含在:
24
tem3dfdtd/lib/OpenRecFiles.f90
普通文件
24
tem3dfdtd/lib/OpenRecFiles.f90
普通文件
@@ -0,0 +1,24 @@
|
||||
!Copyright (c) 2013 by tdem.org under guide of Xiu Li(lixiu@chd.edu.cn)
|
||||
!written by Huaifeng Sun(sunhuaifeng@gmail.com) and Xushan Lu(luxushan@gmail.com)
|
||||
!Code distribution @ tdem.org or sunhuaifeng.com
|
||||
|
||||
subroutine OpenRecFiles
|
||||
! This subroutine opens all the files needed to record data of interests
|
||||
use constantparameters
|
||||
implicit none
|
||||
integer ii,jj
|
||||
PostProcessFilePid=19999; SplitFilePid=19998
|
||||
PostProcessFile='PostProcessFileList.dat'; SplitFile='Split.dat'
|
||||
! This file is used to dominate the post-process program which records all the filenames needed to be processed and some other parameters.
|
||||
open(PostProcessFilePid,file=PostProcessFile)
|
||||
open(SplitFilePid,file=SplitFile)
|
||||
select case(RecFlag)
|
||||
case('HE')
|
||||
call SubOpenRecFiles('HE')
|
||||
case('Hz')
|
||||
call SubOpenRecFiles('Hz')
|
||||
end select
|
||||
write(PostProcessFilePid,'(e12.6e2)')raisetime+wave+ramp
|
||||
close(PostProcessFilePid)
|
||||
end subroutine OpenRecFiles
|
||||
|
在新工单中引用
屏蔽一个用户