タグ

ブックマーク / www.rivhiro-weather.com (1)

  • fortranでnamelistの活用 | 知識の箱

    Fortran90では、外部から変数を与えるときに、 namelistを用いると便利である。 namelistの使い方. (1) namelistを作る。 ——————————— &indata indir=”./input” infile=”input.txt” outdir=”./output” outfile=”output.txt” / &ingrid xgrid=144 ygrid=73 zgrid=17 time=365 / ——————————— (2) Fortranプログラムから呼び出す。 ——————————— program sample implicit none integer, parameter :: maxlen=200 integer, parameter :: infu=11, outfu=12 integer, parameter :: nmlfu=2

  • 1