MOM6
|
Implemented geothermal heating at the ocean bottom.
Geothermal heating can be added either in a layered isopycnal mode, in which the heating raises the density of the layer to the target density of the layer above, and then moves the water into that layer, or in a simple Eulerian mode, in which the bottommost GEOTHERMAL_THICKNESS are heated. Geothermal heating will also provide a buoyant source of bottom TKE that can be used to further mix the near-bottom water. In cold fresh water lakes where heating increases density, water should be moved into deeper layers, but this is not implemented yet.
Data Types | |
type | geothermal_cs |
Control structure for geothermal heating. More... | |
Functions/Subroutines | |
subroutine, public | geothermal (h, tv, dt, ea, eb, G, GV, US, CS, halo) |
Applies geothermal heating, including the movement of water between isopycnal layers to match the target densities. The heating is applied to the bottommost layers that occur within ### of the bottom. If the partial derivative of the coordinate density with temperature is positive or very small, the layers are simply heated in place. Any heat that can not be applied to the ocean is returned (WHERE)? More... | |
subroutine, public | geothermal_init (Time, G, GV, US, param_file, diag, CS) |
Initialize parameters and allocate memory associated with the geothermal heating module. More... | |
subroutine, public | geothermal_end (CS) |
Clean up and deallocate memory associated with the geothermal heating module. More... | |
subroutine, public mom_geothermal::geothermal | ( | real, dimension(szi_(g),szj_(g),szk_(g)), intent(inout) | h, |
type(thermo_var_ptrs), intent(inout) | tv, | ||
real, intent(in) | dt, | ||
real, dimension(szi_(g),szj_(g),szk_(g)), intent(inout) | ea, | ||
real, dimension(szi_(g),szj_(g),szk_(g)), intent(inout) | eb, | ||
type(ocean_grid_type), intent(inout) | G, | ||
type(verticalgrid_type), intent(in) | GV, | ||
type(unit_scale_type), intent(in) | US, | ||
type(geothermal_cs), pointer | CS, | ||
integer, intent(in), optional | halo | ||
) |
Applies geothermal heating, including the movement of water between isopycnal layers to match the target densities. The heating is applied to the bottommost layers that occur within ### of the bottom. If the partial derivative of the coordinate density with temperature is positive or very small, the layers are simply heated in place. Any heat that can not be applied to the ocean is returned (WHERE)?
[in,out] | g | The ocean's grid structure. |
[in] | gv | The ocean's vertical grid structure. |
[in,out] | h | Layer thicknesses [H ~> m or kg m-2] |
[in,out] | tv | A structure containing pointers to any available thermodynamic fields. Absent fields have NULL ptrs. |
[in] | dt | Time increment [T ~> s]. |
[in,out] | ea | The amount of fluid moved downward into a layer; this should be increased due to mixed layer detrainment [H ~> m or kg m-2] |
[in,out] | eb | The amount of fluid moved upward into a layer; this should be increased due to mixed layer entrainment [H ~> m or kg m-2]. |
[in] | us | A dimensional unit scaling type |
cs | The control structure returned by a previous call to geothermal_init. | |
[in] | halo | Halo width over which to work |
Definition at line 54 of file MOM_geothermal.F90.
References mom_error_handler::mom_error().
Referenced by mom_diabatic_driver::diabatic_ale(), mom_diabatic_driver::diabatic_ale_legacy(), and mom_diabatic_driver::layered_diabatic().
subroutine, public mom_geothermal::geothermal_end | ( | type(geothermal_cs), pointer | CS | ) |
Clean up and deallocate memory associated with the geothermal heating module.
cs | Geothermal heating control structure that will be deallocated in this subroutine. |
Definition at line 482 of file MOM_geothermal.F90.
subroutine, public mom_geothermal::geothermal_init | ( | type(time_type), intent(in), target | Time, |
type(ocean_grid_type), intent(inout) | G, | ||
type(verticalgrid_type), intent(in) | GV, | ||
type(unit_scale_type), intent(in) | US, | ||
type(param_file_type), intent(in) | param_file, | ||
type(diag_ctrl), intent(inout), target | diag, | ||
type(geothermal_cs), pointer | CS | ||
) |
Initialize parameters and allocate memory associated with the geothermal heating module.
[in] | time | Current model time. |
[in,out] | g | The ocean's grid structure. |
[in] | gv | The ocean's vertical grid structure. |
[in] | us | A dimensional unit scaling type |
[in] | param_file | A structure to parse for run-time parameters. |
[in,out] | diag | Structure used to regulate diagnostic output. |
cs | Pointer pointing to the module control structure. |
Definition at line 379 of file MOM_geothermal.F90.
References mom_verticalgrid::get_thickness_units(), mom_error_handler::mom_error(), and mom_diag_mediator::register_static_field().
Referenced by mom_diabatic_driver::diabatic_driver_init().