FE-Project
|
module ATMOSPHERE / Variables More...
Data Types | |
type | atmosvars |
Functions/Subroutines | |
subroutine, public | atmosvars_getlocalmeshprgvar (domid, mesh, prgvars_list, auxvars_list, varid, var, dens_hyd, pres_hyd, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshprgvars (domid, mesh, prgvars_list, auxvars_list, ddens, momx, momy, momz, therm, dens_hyd, pres_hyd, rtot, cvtot, cptot, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshsfcvar (domid, mesh, auxvars2d_list, prec, prec_engi, lcmesh2d) |
subroutine, public | atmosvars_getlocalmeshqtrcvar (domid, mesh, trcvars_list, varid, var, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshqtrc_qv (domid, mesh, trcvars_list, forcing_list, var, var_tp, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshqtrcvarlist (domid, mesh, trcvars_list, varid_s, var_list, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshphyauxvars (domid, mesh, phyauxvars_list, pres, pt, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshphytends (domid, mesh, phytends_list, dens_tp, momx_tp, momy_tp, momz_tp, rhot_tp, rhoh_p, rhoq_tp, lcmesh3d) |
subroutine, public | atmosvars_getlocalmeshqtrcphytend (domid, mesh, phytends_list, qtrcid, rhoq_tp) |
Variables | |
real(rp), dimension(prgvar_num), parameter | progvars_check_min = (/ -1.0_RP, -100.0_RP, -200.0_RP, -200.0_RP, -200.0_RP /) |
integer, parameter, public | atmos_auxvars2d_prec_id = 1 |
integer, parameter, public | atmos_auxvars2d_prec_engi_id = 2 |
integer, parameter, public | atmos_auxvars2d_num = 2 |
type(variableinfo), dimension(atmos_auxvars2d_num), public | atmos_auxvars2d_vinfo |
integer, parameter, public | atmos_diagvars_dens_id = 1 |
integer, parameter, public | atmos_diagvars_u_id = 2 |
integer, parameter, public | atmos_diagvars_v_id = 3 |
integer, parameter, public | atmos_diagvars_w_id = 4 |
integer, parameter, public | atmos_diagvars_t_id = 5 |
integer, parameter, public | atmos_diagvars_umet_id = 6 |
integer, parameter, public | atmos_diagvars_vmet_id = 7 |
integer, parameter, public | atmos_diagvars_qdry_id = 8 |
integer, parameter, public | atmos_diagvars_rh_id = 9 |
integer, parameter, public | atmos_diagvars_engt_id = 10 |
integer, parameter, public | atmos_diagvars_engp_id = 11 |
integer, parameter, public | atmos_diagvars_engk_id = 12 |
integer, parameter, public | atmos_diagvars_engi_id = 13 |
integer, parameter, public | atmos_diagvars3d_num = 13 |
type(variableinfo), dimension(atmos_diagvars3d_num), public | atmos_diagvars3d_vinfo |
integer, parameter, public | atmos_diagvars_rain_id = 1 |
integer, parameter, public | atmos_diagvars_snow_id = 2 |
integer, parameter, public | atmos_diagvars2d_num = 2 |
type(variableinfo), dimension(atmos_diagvars2d_num), public | atmos_diagvars2d_vinfo |
module ATMOSPHERE / Variables
name | type | default value | comment |
---|---|---|---|
CHECK_RANGE | logical | .false. | |
CHECK_TOTAL | logical | .false. |
name | type | default value | comment |
---|---|---|---|
IN_BASENAME | character(len=H_LONG) | '' | Basename of the input file |
IN_POSTFIX_TIMELABEL | logical | .false. | Add timelabel to the basename of input file? |
OUT_BASENAME | character(len=H_LONG) | '' | Basename of the output file |
OUT_POSTFIX_TIMELABEL | logical | .true. | Add timelabel to the basename of output file? |
OUT_TITLE | character(len=H_MID) | '' | Title of the output file |
OUT_DTYPE | character(len=H_SHORT) | 'DEFAULT' | REAL4 or REAL8 |
name | description | unit | variable |
---|---|---|---|
PREC | surface precipitaion flux | kg/m2/s | PREC |
PREC_ENGI | internal energy of precipitation | J/m2 | PREC_ENGI |
RAIN | surface rain flux | kg/m2/s | RAIN |
SNOW | surface snow flux | kg/m2/s | SNOW |
DENS | density | kg/m3 | DENS |
U | velocity u | m/s | U |
V | velocity v | m/s | V |
W | velocity w | m/s | W |
T | temperature | K | T |
Umet | eastward velocity | m/s | Umet |
Vmet | northward velocity | m/s | Vmet |
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshprgvar | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | prgvars_list, | ||
class(modelvarmanager), intent(inout) | auxvars_list, | ||
integer, intent(in) | varid, | ||
class(localmeshfieldbase), intent(out), pointer | var, | ||
class(localmeshfieldbase), intent(out), optional, pointer | dens_hyd, | ||
class(localmeshfieldbase), intent(out), optional, pointer | pres_hyd, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 873 of file mod_atmos_vars.F90.
Referenced by mod_atmos_phy_tb::atmosphytb_setup(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshprgvars | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | prgvars_list, | ||
class(modelvarmanager), intent(inout) | auxvars_list, | ||
class(localmeshfieldbase), intent(out), pointer | ddens, | ||
class(localmeshfieldbase), intent(out), pointer | momx, | ||
class(localmeshfieldbase), intent(out), pointer | momy, | ||
class(localmeshfieldbase), intent(out), pointer | momz, | ||
class(localmeshfieldbase), intent(out), pointer | therm, | ||
class(localmeshfieldbase), intent(out), pointer | dens_hyd, | ||
class(localmeshfieldbase), intent(out), pointer | pres_hyd, | ||
class(localmeshfieldbase), intent(out), pointer | rtot, | ||
class(localmeshfieldbase), intent(out), pointer | cvtot, | ||
class(localmeshfieldbase), intent(out), pointer | cptot, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 919 of file mod_atmos_vars.F90.
Referenced by mod_atmos_phy_tb::atmosphytb_setup(), mod_dg_prep::dg_prep(), mod_experiment::exp_setinitcond_lc::exp_setinitcond_lc(), mod_mkinit::mkinit(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshsfcvar | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | auxvars2d_list, | ||
class(localmeshfieldbase), intent(out), pointer | prec, | ||
class(localmeshfieldbase), intent(out), pointer | prec_engi, | ||
class(localmesh2d), intent(out), optional, pointer | lcmesh2d ) |
Definition at line 985 of file mod_atmos_vars.F90.
References atmos_auxvars2d_prec_engi_id, and atmos_auxvars2d_prec_id.
Referenced by mod_atmos_component::atmos_setup(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshqtrcvar | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | trcvars_list, | ||
integer, intent(in) | varid, | ||
class(localmeshfieldbase), intent(out), pointer | var, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 1020 of file mod_atmos_vars.F90.
Referenced by mod_atmos_phy_tb::atmosphytb_setup(), mod_experiment::exp_setinitcond_lc::exp_setinitcond_lc(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshqtrc_qv | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | trcvars_list, | ||
class(modelvarmanager), intent(inout) | forcing_list, | ||
class(localmeshfieldbase), intent(out), pointer | var, | ||
class(localmeshfieldbase), intent(out), pointer | var_tp, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 1054 of file mod_atmos_vars.F90.
Referenced by mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshqtrcvarlist | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | trcvars_list, | ||
integer, intent(in) | varid_s, | ||
type(localmeshfieldbaselist), dimension(:), intent(out) | var_list, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 1102 of file mod_atmos_vars.F90.
Referenced by atmosvars_getlocalmeshqtrcphytend(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshphyauxvars | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | phyauxvars_list, | ||
class(localmeshfieldbase), intent(out), pointer | pres, | ||
class(localmeshfieldbase), intent(out), pointer | pt, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 1139 of file mod_atmos_vars.F90.
Referenced by mod_atmos_phy_tb::atmosphytb_setup(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshphytends | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | phytends_list, | ||
class(localmeshfieldbase), intent(out), pointer | dens_tp, | ||
class(localmeshfieldbase), intent(out), pointer | momx_tp, | ||
class(localmeshfieldbase), intent(out), pointer | momy_tp, | ||
class(localmeshfieldbase), intent(out), pointer | momz_tp, | ||
class(localmeshfieldbase), intent(out), pointer | rhot_tp, | ||
class(localmeshfieldbase), intent(out), pointer | rhoh_p, | ||
type(localmeshfieldbaselist), dimension(qa), intent(inout), optional | rhoq_tp, | ||
class(localmesh3d), intent(out), optional, pointer | lcmesh3d ) |
Definition at line 1177 of file mod_atmos_vars.F90.
Referenced by mod_atmos_component::atmos_setup(), mod_atmos_phy_tb::atmosphytb_setup(), and mod_atmos_vars::atmosvars::regist_physvar_manager().
subroutine, public mod_atmos_vars::atmosvars_getlocalmeshqtrcphytend | ( | integer, intent(in) | domid, |
class(meshbase), intent(in) | mesh, | ||
class(modelvarmanager), intent(inout) | phytends_list, | ||
integer, intent(in) | qtrcid, | ||
class(localmeshfieldbase), intent(out), pointer | rhoq_tp ) |
Definition at line 1238 of file mod_atmos_vars.F90.
References mod_atmos_phy_mp_vars::atmosphympvars_getlocalmeshfields_sfcflx(), and atmosvars_getlocalmeshqtrcvarlist().
Referenced by mod_atmos_vars::atmosvars::regist_physvar_manager().
real(rp), dimension(prgvar_num), parameter mod_atmos_vars::progvars_check_min = (/ -1.0_RP, -100.0_RP, -200.0_RP, -200.0_RP, -200.0_RP /) |
Definition at line 142 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_auxvars2d_prec_id = 1 |
Definition at line 148 of file mod_atmos_vars.F90.
Referenced by atmosvars_getlocalmeshsfcvar().
integer, parameter, public mod_atmos_vars::atmos_auxvars2d_prec_engi_id = 2 |
Definition at line 149 of file mod_atmos_vars.F90.
Referenced by atmosvars_getlocalmeshsfcvar().
integer, parameter, public mod_atmos_vars::atmos_auxvars2d_num = 2 |
Definition at line 150 of file mod_atmos_vars.F90.
type(variableinfo), dimension(atmos_auxvars2d_num), public mod_atmos_vars::atmos_auxvars2d_vinfo |
Definition at line 152 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_dens_id = 1 |
Definition at line 161 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_u_id = 2 |
Definition at line 162 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_v_id = 3 |
Definition at line 163 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_w_id = 4 |
Definition at line 164 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_t_id = 5 |
Definition at line 165 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_umet_id = 6 |
Definition at line 166 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_vmet_id = 7 |
Definition at line 167 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_qdry_id = 8 |
Definition at line 168 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_rh_id = 9 |
Definition at line 169 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_engt_id = 10 |
Definition at line 170 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_engp_id = 11 |
Definition at line 171 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_engk_id = 12 |
Definition at line 172 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_engi_id = 13 |
Definition at line 173 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars3d_num = 13 |
Definition at line 174 of file mod_atmos_vars.F90.
type(variableinfo), dimension(atmos_diagvars3d_num), public mod_atmos_vars::atmos_diagvars3d_vinfo |
Definition at line 176 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_rain_id = 1 |
Definition at line 193 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars_snow_id = 2 |
Definition at line 194 of file mod_atmos_vars.F90.
integer, parameter, public mod_atmos_vars::atmos_diagvars2d_num = 2 |
Definition at line 195 of file mod_atmos_vars.F90.
type(variableinfo), dimension(atmos_diagvars2d_num), public mod_atmos_vars::atmos_diagvars2d_vinfo |
Definition at line 197 of file mod_atmos_vars.F90.