format_class.f90
Go to the documentation of this file.
1
!> @file format_class.f90
2
!!
3
!! The error file code for this file is ***W21***.
4
!! @brief Module \ref format_class with format statements for data files
5
!!
6
7
!> Define custom format statements used to read in major data files
8
!!
9
!! @author Christian Winteler
10
!! @date 22.01.09
11
!!
12
!! \b Editors:
13
!! - 11.01.14: Oleg Korobkin
14
!! - 28.07.22: MR - Changed format of reaclib to include chapter 9-11
15
!! .
16
module
format_class
17
implicit none
18
19
character(60)
,
dimension(100)
::
my_format
20
21
contains
22
23
subroutine
load_format
()
24
25
my_format
(1) =
"(I2,3X,6A5,8X,A4,a1,a1,3X,1pE12.5)"
26
my_format
(2) =
"(4E13.6)"
27
my_format
(3) =
"(I1,4X,6I5,8X,A4,L1,L1,3X,1PE12.5,/,4E13.6,/, 3E13.6)"
28
my_format
(4) =
"(A5,F12.3,2I4,F6.1,F10.3)"
29
my_format
(5) =
"(8F9.2)"
30
31
end subroutine
load_format
32
33
end module
format_class
format_class::load_format
subroutine load_format()
Definition:
format_class.f90:24
format_class::my_format
character(60), dimension(100) my_format
Definition:
format_class.f90:19
format_class
Define custom format statements used to read in major data files.
Definition:
format_class.f90:16
src
format_class.f90