Read all the input control files
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(filetype), | intent(in) | :: | files | |||
type(controltype), | intent(inout) | :: | control | |||
type(schemetype), | intent(inout) | :: | scheme | |||
type(flowtype), | intent(inout) | :: | flow |
subroutine read_input_and_controls(files, control, scheme, flow)
!< Read all the input control files
implicit none
type(filetype), intent(in) :: files
type(controltype), intent(inout) :: control
type(schemetype), intent(inout) :: scheme
type(flowtype), intent(inout) :: flow
call read_controls(files, control)
call read_scheme(files, scheme)
call read_flow(files, control, flow)
call read_output_control(files, control)
call read_Res_list(files, control)
end subroutine read_input_and_controls