|
V3FIT
|
Go to the documentation of this file.
102 REAL (rprec),
DIMENSION(vacuum_max_currents) ::
extcur = 0.0
106 REAL (rprec),
DIMENSION(vacuum_max_currents,3) :: &
109 REAL (rprec),
DIMENSION(vacuum_max_currents) :: &
112 REAL (rprec),
DIMENSION(vacuum_max_currents) :: &
117 REAL (rprec),
DIMENSION(vacuum_max_currents) :: &
120 REAL (rprec),
DIMENSION(vacuum_max_currents,3) :: &
124 LOGICAL,
DIMENSION(vacuum_max_currents) :: &
125 & l_rot_coil_center = .false.
127 REAL (rprec),
DIMENSION(vacuum_max_currents,3) :: &
131 NAMELIST/vacuum_main_nli/ &
158 CHARACTER (len=*),
INTENT(in) :: namelist_file
161 INTEGER :: iou_vacnli, status
162 REAL (rprec) :: start_time
170 CALL safe_open(iou_vacnli, status, trim(namelist_file), &
171 &
'old',
'formatted')
172 CALL assert_eq(0, status,
'vacuum_input_read_namelist' // &
173 &
': Safe_open of ' // trim(namelist_file) //
' failed')
176 READ (iou_vacnli, nml=vacuum_main_nli)
177 CLOSE (iou_vacnli, iostat=status)
178 CALL assert_eq(0, status,
'vacuum_input_read_namelist' // &
179 &
': Error closing ' // trim(namelist_file) //
' failed')
200 CHARACTER (len=*),
INTENT(in) :: namelist_file
203 INTEGER :: iou_vacnli, status
204 REAL (rprec) :: start_time
212 CALL safe_open(iou_vacnli, status, trim(namelist_file), &
213 &
'old',
'formatted')
214 CALL assert_eq(0, status,
'vacuum_input_write_namelist' // &
215 &
': Safe_open of ' // trim(namelist_file) //
' failed')
218 WRITE (iou_vacnli, nml=vacuum_main_nli)
219 CLOSE (iou_vacnli, iostat=status)
220 CALL assert_eq(0, status,
'vacuum_input_write_namelist' // &
221 &
': Error closing ' // trim(namelist_file) //
' failed')
Defines functions for measuring an tabulating performance of function and subroutine calls....
real(rprec) function profiler_get_start_time()
Gets the start time of profiled function.
This modules contains parameters used by equilibrium models.
subroutine profiler_set_stop_time(symbol_name, start_time)
Gets the end time of profiled function.