Load from file.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(simulation_object), | intent(inout) | :: | self | simulation data. |
subroutine load_input_files(self)
!< Load from file.
class(simulation_object), intent(inout) :: self !< simulation data.
if (self%is_cli_parsed) then
if (self%is_output_verbose) print '(A)', 'load file "'//trim(adjustl(self%file_parameters))//'"'
call self%load_file_parameters(file_name=self%file_parameters, go_on_fail=self%go_on_fail)
else
error stop 'error: before loading input files, Command Line Interface must be parsed!'
endif
endsubroutine load_input_files