initialize_korc_parameters Subroutine

public subroutine initialize_korc_parameters(params)

Arguments

Type IntentOptional AttributesName
type(KORC_PARAMS), intent(inout) :: params

Core KORC simulation parameters.


Contents


Source Code

subroutine initialize_korc_parameters(params)
  !! @note Interface for calling initialization subroutines @endnote
  TYPE(KORC_PARAMS), INTENT(INOUT) 	:: params
    !! Core KORC simulation parameters.
  INTEGER 							:: mpierr
    !! MPI error status.

	call MPI_BARRIER(MPI_COMM_WORLD,mpierr)

	call set_paths(params)

	call MPI_BARRIER(MPI_COMM_WORLD,mpierr)

	call load_korc_params(params)

	call MPI_BARRIER(MPI_COMM_WORLD,mpierr)
end subroutine initialize_korc_parameters