Fortran namelist is a I/O method introduced in Fortran 77. It later became a standard in Fortran 90. It basically allows to read/write data as a dictionary like in plain text files. In order to read a REAL array, see the example below: Input param.nml: ¶m nrows=3, ncol=2, data_file=”hello.txt”, values=1.1, 2.2, 3.3, 4.4/ Output: mymachine:~/tests/namelist_arrays$…
read moreFortran namelist is a I/O method introduced in Fortran 77. It later became a standard in Fortran 90. It allows to read/write data as a dictionary like in plain text files. See below for a simple example: Derived types are user defined types. They extend the basic types REAL, INTEGER and LOGICAL. They can be…
read more