Load the input parameters from the JSON file
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(type_input), | intent(inout) | :: | self |
module subroutine inout_read_basic_parameters(self) !< Load the input parameters from the JSON file implicit none class(type_input), intent(inout) :: self type(json_file) :: json call json%initialize() call json%load(filename=self%basic_file_name) call json%print_error_message(output_unit) call read_parameters_simulation_settings(self, json) call read_parameters_analysis_controls(self, json) call read_parameters_geometry_settings(self, json) call read_parameters_materials(self, json) call read_parameters_solver_settings(self, json) call json%destroy() call json%print_error_message(output_unit) end subroutine inout_read_basic_parameters