namespace seamount_initialization

Overview

Configures the model for the idealized seamount test case. More…

namespace seamount_initialization {

// global functions

subroutine, public seamount_initialize_topography(D D, G G, param_file param_file, max_depth max_depth);

subroutine, public seamount_initialize_thickness(
    h h,
    G G,
    GV GV,
    US US,
    param_file param_file,
    just_read_params just_read_params
    );

subroutine, public seamount_initialize_temperature_salinity(
    T T,
    S S,
    h h,
    G G,
    GV GV,
    param_file param_file,
    eqn_of_state eqn_of_state,
    just_read_params just_read_params
    );

} // namespace seamount_initialization

Detailed Documentation

Configures the model for the idealized seamount test case.

Global Functions

subroutine, public seamount_initialize_topography(
    D D,
    G G,
    param_file param_file,
    max_depth max_depth
    )

Initialization of topography.

Parameters:

g

The dynamic horizontal grid type

d

Ocean bottom depth in the units of depth_max

param_file

Parameter file structure

max_depth

Maximum ocean depth in arbitrary units

subroutine, public seamount_initialize_thickness(
    h h,
    G G,
    GV GV,
    US US,
    param_file param_file,
    just_read_params just_read_params
    )

Initialization of thicknesses. This subroutine initializes the layer thicknesses to be uniform.

Parameters:

g

The ocean’s grid structure.

gv

The ocean’s vertical grid structure.

us

A dimensional unit scaling type

h

The thickness that is being initialized [H ~> m or kg m-2].

param_file

A structure indicating the open file to parse for model parameter values.

just_read_params

If present and true, this call will only read parameters without changing h.

subroutine, public seamount_initialize_temperature_salinity(
    T T,
    S S,
    h h,
    G G,
    GV GV,
    param_file param_file,
    eqn_of_state eqn_of_state,
    just_read_params just_read_params
    )

Initial values for temperature and salinity.

Parameters:

g

Ocean grid structure

gv

Vertical grid structure

t

Potential temperature [degC]

s

Salinity [ppt]

h

Layer thickness [H ~> m or kg m-2]

param_file

Parameter file structure

eqn_of_state

Equation of state structure

just_read_params

If present and true, this call will only read parameters without changing h.