ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
wrapper_jalpha.f90
Go to the documentation of this file.
2 !----------------------------------------------------------------------------
3 ! This wrapper is part of a workflow for a j-alpha modification of an
4 ! equilibrium.
5 !
6 ! First a separate HELENA run should compute the reference equilibrium
7 ! which should be stored in an equilibrium CPO file (default name:
8 ! equilibrium.cpo). The program then reads this file, uses the jalpha
9 ! module to modify the input profiles and runs HELENA on the resulting
10 ! profiles to compute the modified equilibrium.
11 !
12 ! modules: JALPHA, HELENA
13 !----------------------------------------------------------------------------
14 
15  use itm_types
16  use mod_parameter
17  use deallocate_structures
18  use copy_structures
19  use is_set_structures
20  use size_of_structures
21  use write_structures
22  use read_structures
23  use euitm_schemas
24  use euitm_xml_parser
25  use xml_file_reader
26 
27  implicit none
28 
29 !-- interface definitions for actors
30 
31  interface
32 
33  subroutine helena(equilibrium_in, equilibrium_out, path, code_parameters)
34  use euitm_schemas
35  type (type_equilibrium), pointer :: equilibrium_in(:)
36  type (type_equilibrium), pointer :: equilibrium_out(:)
37  character(len = 132), optional :: path
38  type (type_param) :: code_parameters
39  end subroutine helena
40 
41  subroutine jalpha(equilibrium_in, equilibrium_out, path, scale_p, &
42  scale_j, code_parameters)
43  use euitm_schemas
44  use itm_types
45  type (type_equilibrium), pointer :: equilibrium_in(:)
46  type (type_equilibrium), pointer :: equilibrium_out(:)
47  character(len = 132), optional :: path
48  real(r8) :: scale_p, scale_j
49  type (type_param) :: code_parameters
50  end subroutine jalpha
51 
52  end interface
53 
54 !-- variable definitions
55 
56  type (type_equilibrium), pointer :: equilibrium_in(:)
57  type (type_equilibrium), pointer :: equilibrium_out(:)
58  character(len = 132) :: filename_equilibrium_in
59  character(len = 132) :: filename_jalpha_xml
60  character(len = 132) :: filename_helena_xml
61  character(len = 132) :: path, path_tag
62  type (type_param) :: code_parameters
63 
64  integer(itm_i4) :: i
65  integer(itm_i8) :: total_size = 0
66  logical, parameter :: human_readable = .true.
67 
68  integer(itm_i4) :: iargc
69 
70 !-- define default behaviour without input arguments
71  path = './' ! run locally
72  filename_equilibrium_in = 'equilibrium.cpo'
73  filename_jalpha_xml = 'jalpha.xml'
74  filename_helena_xml = 'helena.xml'
75 
76  path_tag = ''
77  if (iargc() >= 1) then
78  call getarg(1, filename_equilibrium_in)
79  if (iargc() >= 2) then
80  call getarg(2, filename_jalpha_xml)
81  call getarg(3, filename_helena_xml)
82  if (iargc() >= 4) then
83  call getarg(4, path)
84  end if
85  if (index(filename_jalpha_xml, 'jalpha') /= -1) then
86  path_tag = filename_jalpha_xml(index(filename_jalpha_xml, 'jalpha') &
87  + 6 : index(filename_jalpha_xml, '.xml') - 1)
88  end if
89  end if
90  end if
91 
92 !-- allocate empty input CPO
93  allocate(equilibrium_in(1))
94 
95 !-- read equilibrium CPO from file (reference equilibrium)
96  call set_read_verbosity(0) ! no verbose output
97  call open_read_file(12, trim(adjustl(path)) &
98  // trim(adjustl(filename_equilibrium_in)))
99  call read_cpo(equilibrium_in(1), 'equilibrium')
100  call close_read_file
101 
102 !-- test which fields have been set
103  call is_set_cpo(equilibrium_in(1), 'equilibrium_in')
104 
105 !-- display size of input CPO
106  call set_size_of_verbosity(0)
107  call set_size_of_maxlevel(1)
108 ! call size_of_cpo(equilibrium_in(1), total_size, &
109 ! human_readable, 'equilibrium_in')
110 
111 !-- read JALPHA schema and input
112  call fill_param(code_parameters, trim(adjustl(path)) &
113  // trim(adjustl(filename_jalpha_xml)), '', trim(adjustl(path)) &
114  // 'jalpha.xsd')
115 !-- modify equilibrium: JALPHA
116  call jalpha(equilibrium_in = equilibrium_in, &
117  equilibrium_out = equilibrium_out, path = path, &
118  scale_p = 0._r8, scale_j = 0._r8, code_parameters = code_parameters)
119 
120 !-- destroy equilibrium_in
121  call set_deallocate_verbosity(0) ! no verbose output
122  call deallocate_cpo(equilibrium_in)
123 
124 !-- allocate equilibrium_in
125  allocate(equilibrium_in(size(equilibrium_out)))
126 
127 !-- copy equilibrium_out to equilibrium_in
128  call set_copy_verbosity(0) ! no verbose output
129  do i = 1, size(equilibrium_out)
130  call copy_cpo(equilibrium_out(i), equilibrium_in(i))
131  end do
132 
133 !-- destroy equilibrium_out
134  call deallocate_cpo(equilibrium_out)
135 
136 !-- read HELENA schema and input
137  call fill_param(code_parameters, trim(adjustl(path)) &
138  // trim(adjustl(filename_helena_xml)), '', trim(adjustl(path)) &
139  // 'helena.xsd')
140 
141 !-- set path to output path
142  if (path_tag /= '') then
143  path = trim(adjustl(path)) // 'jalpha' // trim(adjustl(path_tag)) // '/'
144  write(*, *) 'JALPHA output redirected to ', trim(adjustl(path))
145  end if
146 
147 !-- solve equilibrium: HELENA
148  call helena(equilibrium_in = equilibrium_in, &
149  equilibrium_out = equilibrium_out, path = path, &
150  code_parameters = code_parameters)
151 
152 !-- output of HELENA equilibrium for ILSA
153  call write_equilibrium(path, equilibrium_out(1))
154 
155 !-- output of new equilibrium CPO
156  call set_write_verbosity(0) ! no verbose output
157  call open_write_file(12, trim(adjustl(path)) // 'equilibrium.cpo')
158  call write_cpo(equilibrium_out(1), 'equilibrium')
159  call close_write_file
160 
161 !-- final deallocate
162  call deallocate_cpo(equilibrium_in)
163  call deallocate_cpo(equilibrium_out)
164 
165  stop 'finished wrapper'
166 
167 end program wrapper_jalpha
subroutine helena(equilibrium_in, equilibrium_out, in_path, code_parameters)
Definition: helena.f90:1
subroutine write_equilibrium(path, equilibrium_out)
program wrapper_jalpha