FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines
mod_atmos_phy_tb Module Reference

module ATMOSPHERE physics / sub-grid scale turbulence process More...

Data Types

type  atmosphytb
 Derived type to manage a component of sub-grid scale turbulent process. More...
 

Functions/Subroutines

subroutine atmosphytb_setup (this, model_mesh, tm_parent_comp)
 Setup a component of SGS turbulence process.
 

Detailed Description

module ATMOSPHERE physics / sub-grid scale turbulence process

Description
Module for sub-grid scale turbulence process
Author
Yuta Kawai, Team SCALE
NAMELIST
  • PARAM_ATMOS_PHY_TB
    nametypedefault valuecomment
    TIME_DT real(DP) UNDEF8 Timestep for sub-grid scale turbulent process
    TIME_DT_UNIT character(len=H_SHORT) 'SEC' Unit of timestep
    TB_TYPE character(len=H_MID) 'SMAGORINSKY' Type of sub-grid scale turbulent scheme

History Output
No history output

Function/Subroutine Documentation

◆ atmosphytb_setup()

subroutine mod_atmos_phy_tb::atmosphytb_setup ( class(atmosphytb), intent(inout) this,
class(modelmeshbase), intent(in), target model_mesh,
class(time_manager_component), intent(inout) tm_parent_comp )

Setup a component of SGS turbulence process.

Parameters
model_mesha object to manage computational mesh of atmospheric model
tm_parent_compa object to mange a temporal scheme in a parent component

Definition at line 94 of file mod_atmos_phy_tb.F90.

95 use mod_atmos_mesh, only: atmosmesh
97
98 implicit none
99 class(AtmosPhyTb), intent(inout) :: this
100 class(ModelMeshBase), target, intent(in) :: model_mesh
101 class(TIME_manager_component), intent(inout) :: tm_parent_comp
102
103 real(DP) :: TIME_DT = undef8
104 character(len=H_SHORT) :: TIME_DT_UNIT = 'SEC'
105
106 character(len=H_MID) :: TB_TYPE = 'SMAGORINSKY'
107 namelist /param_atmos_phy_tb/ &
108 time_dt, &
109 time_dt_unit, &
110 tb_type
111
112 class(AtmosMesh), pointer :: atm_mesh
113 class(MeshBase), pointer :: ptr_mesh
114 real(DP) :: dtsec
115
116 integer :: ierr
117 !--------------------------------------------------
118
119 if (.not. this%IsActivated()) return
120
121 log_newline
122 log_info("ATMOS_PHY_TB_setup",*) 'Setup'
123
124 !--- read namelist
125 rewind(io_fid_conf)
126 read(io_fid_conf,nml=param_atmos_phy_tb,iostat=ierr)
127 if( ierr < 0 ) then !--- missing
128 log_info("ATMOS_PHY_TB_setup",*) 'Not found namelist. Default used.'
129 elseif( ierr > 0 ) then !--- fatal error
130 log_error("ATMOS_PHY_TB_setup",*) 'Not appropriate names in namelist PARAM_ATMOS_PHY_TB. Check!'
131 call prc_abort
132 endif
133 log_nml(param_atmos_phy_tb)
134
135 !- get mesh --------------------------------------------------
136
137 call model_mesh%GetModelMesh( ptr_mesh )
138 select type(model_mesh)
139 class is (atmosmesh)
140 atm_mesh => model_mesh
141 end select
142
143 !--- Regist this compoent in the time manager
144
145 call tm_parent_comp%Regist_process( 'ATMOS_PHY_TB', time_dt, time_dt_unit, & ! (in)
146 this%tm_process_id ) ! (out)
147
148 dtsec = tm_parent_comp%process_list(this%tm_process_id)%dtsec
149
150 !- initialize the variables
151 call this%vars%Init( model_mesh )
152
153 !- Initialize a module for turbulence model
154 call this%tb_driver%Init( tb_type, dtsec, atm_mesh )
155
156 !--
157 this%dyn_bnd => null()
158
159 return
module Atmosphere / Mesh
module common / time

References mod_atmos_phy_tb_vars::atmosphytbvars_getlocalmeshfields_tend(), mod_atmos_vars::atmosvars_getlocalmeshphyauxvars(), mod_atmos_vars::atmosvars_getlocalmeshphytends(), mod_atmos_vars::atmosvars_getlocalmeshprgvar(), mod_atmos_vars::atmosvars_getlocalmeshprgvars(), mod_atmos_vars::atmosvars_getlocalmeshqtrcvar(), and scale_atm_dyn_dgm_nonhydro3d_common::prgvar_ddens_id.