NAMELIST から時間の設定を行うモジュール
エラー処理において gt4f90io を利用
real(8) :: DelTimeLong !長いタイムステップ real(8) :: DelTimeShort !短いタイムステップ real(8) :: TimeInt !積分時間 real(8) :: TimeDisp !ファイル出力する時間間隔 integer :: NstepLong !長いタイムステップのステップ数 integer :: NstepShort!短いタイムステップのステップ数
NAMELIST から必要な情報を読み取り, 変数の設定を行う.
subroutine timeset_init(cfgfile)
use dc_trace, only: BeginSub, EndSub use dc_message, only: MessageNotify
character(*), intent(in) :: cfgfile
NAMELIST /timeset/ & & DelTimeLong, DelTimeShort, TimeInt, TimeDisp