MOM6
|
Configures the model for the idealized seamount test case.
Functions/Subroutines | |
subroutine, public | seamount_initialize_topography (D, G, param_file, max_depth) |
Initialization of topography. More... | |
subroutine, public | seamount_initialize_thickness (h, G, GV, US, param_file, just_read_params) |
Initialization of thicknesses. This subroutine initializes the layer thicknesses to be uniform. More... | |
subroutine, public | seamount_initialize_temperature_salinity (T, S, h, G, GV, param_file, eqn_of_state, just_read_params) |
Initial values for temperature and salinity. More... | |
Variables | |
character(len=40) | mdl = "seamount_initialization" |
This module's name. More... | |
subroutine, public seamount_initialization::seamount_initialize_temperature_salinity | ( | real, dimension(szi_(g),szj_(g), szk_(g)), intent(out) | T, |
real, dimension(szi_(g),szj_(g), szk_(g)), intent(out) | S, | ||
real, dimension(szi_(g),szj_(g), szk_(g)), intent(in) | h, | ||
type(ocean_grid_type), intent(in) | G, | ||
type(verticalgrid_type), intent(in) | GV, | ||
type(param_file_type), intent(in) | param_file, | ||
type(eos_type), pointer | eqn_of_state, | ||
logical, intent(in), optional | just_read_params | ||
) |
Initial values for temperature and salinity.
[in] | g | Ocean grid structure |
[in] | gv | Vertical grid structure |
[out] | t | Potential temperature [degC] |
[out] | s | Salinity [ppt] |
[in] | h | Layer thickness [H ~> m or kg m-2] |
[in] | param_file | Parameter file structure |
eqn_of_state | Equation of state structure | |
[in] | just_read_params | If present and true, this call will only read parameters without changing h. |
Definition at line 196 of file seamount_initialization.F90.
References mdl, mom_error_handler::mom_error(), regrid_consts::regridding_rho, and regrid_consts::regridding_sigma.
Referenced by mom_state_initialization::mom_initialize_state().
subroutine, public seamount_initialization::seamount_initialize_thickness | ( | real, dimension(szi_(g),szj_(g),szk_(gv)), intent(out) | h, |
type(ocean_grid_type), intent(in) | G, | ||
type(verticalgrid_type), intent(in) | GV, | ||
type(unit_scale_type), intent(in) | US, | ||
type(param_file_type), intent(in) | param_file, | ||
logical, intent(in), optional | just_read_params | ||
) |
Initialization of thicknesses. This subroutine initializes the layer thicknesses to be uniform.
[in] | g | The ocean's grid structure. |
[in] | gv | The ocean's vertical grid structure. |
[in] | us | A dimensional unit scaling type |
[out] | h | The thickness that is being initialized [H ~> m or kg m-2]. |
[in] | param_file | A structure indicating the open file to parse for model parameter values. |
[in] | just_read_params | If present and true, this call will only read parameters without changing h. |
Definition at line 81 of file seamount_initialization.F90.
References mdl, mom_error_handler::mom_mesg(), regrid_consts::regridding_rho, and regrid_consts::regridding_sigma.
subroutine, public seamount_initialization::seamount_initialize_topography | ( | real, dimension(g%isd:g%ied,g%jsd:g%jed), intent(out) | D, |
type(dyn_horgrid_type), intent(in) | G, | ||
type(param_file_type), intent(in) | param_file, | ||
real, intent(in) | max_depth | ||
) |
Initialization of topography.
[in] | g | The dynamic horizontal grid type |
[out] | d | Ocean bottom depth in the units of depth_max |
[in] | param_file | Parameter file structure |
[in] | max_depth | Maximum ocean depth in arbitrary units |
Definition at line 42 of file seamount_initialization.F90.
References mdl.
Referenced by mom_fixed_initialization::mom_initialize_topography().
|
private |
This module's name.
Definition at line 26 of file seamount_initialization.F90.
Referenced by seamount_initialize_temperature_salinity(), seamount_initialize_thickness(), and seamount_initialize_topography().