MPAS-JEDI
|
Functions/Subroutines | |
subroutine, public | add_incr (self, increment) |
add increment to state More... | |
subroutine, public | analytic_ic (self, geom, f_conf, vdate) |
Analytic Initialization for the MPAS Model. More... | |
subroutine, public | invent_state (self, f_conf) |
subroutine, public mpas_state_mod::add_incr | ( | class(mpas_fields), intent(inout) | self, |
class(mpas_fields), intent(in) | increment | ||
) |
add increment to state
add_incr() adds "increment" to "state", such as state (containing analysis) = state (containing guess) + increment Here, we also update "theta", "rho", and "u" (edge-normal wind), which are close to MPAS prognostic variable. Intermediate 3D pressure is diagnosed with hydrostatic balance. While conversion to "theta" and "rho" uses full state variables, conversion to "u" from cell center winds uses their increment to reduce the smoothing effect.
[in,out] | self | state |
Definition at line 66 of file mpas_state_mod.F90.
subroutine, public mpas_state_mod::analytic_ic | ( | class(mpas_fields), intent(inout) | self, |
type(mpas_geom), intent(in), target | geom, | ||
type(fckit_configuration), intent(in) | f_conf, | ||
type(datetime), intent(inout) | vdate | ||
) |
Analytic Initialization for the MPAS Model.
analytic_IC() initializes the MPAS Field and State objects using one of several alternative idealized analytic models. This is intended to facilitate testing by eliminating the need to read in the initial state from a file and by providing exact expressions to test interpolations. This function is activated by setting the "analytic_init" field in the "initial" or "StateFile" section of the configuration file.
Initialization options that begin with "dcmip" refer to tests defined by the multi-institutional 2012 Dynamical Core Intercomparison Project and the associated Summer School, sponsored by NOAA, NSF, DOE, NCAR, and the University of Michigan.
Currently implemented options for analytic_init include:
[in,out] | self | State |
[in] | geom | Geometry |
[in] | f_conf | Configuration |
[in,out] | vdate | DateTime |
Definition at line 187 of file mpas_state_mod.F90.
subroutine, public mpas_state_mod::invent_state | ( | class(mpas_fields), intent(inout) | self, |
type(fckit_configuration), intent(in) | f_conf | ||
) |
[in,out] | self | Model fields |
[in] | f_conf | Configuration structure |
Definition at line 456 of file mpas_state_mod.F90.