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

module ATMOSPHERE component More...

Data Types

type  atmoscomponent
 

Functions/Subroutines

subroutine atmos_setup (this)
 

Detailed Description

module ATMOSPHERE component

Description
Atmosphere component module
Author
Yuta Kawai, Team SCALE
NAMELIST
  • PARAM_ATMOS
    nametypedefault valuecomment
    ACTIVATE_FLAG logical .true.
    TIME_DT real(DP) UNDEF8
    TIME_DT_UNIT character(len=H_SHORT) 'SEC'
    TIME_DT_RESTART real(DP) UNDEF8
    TIME_DT_RESTART_UNIT character(len=H_SHORT) 'SEC'
    ATMOS_MESH_TYPE character(len=H_SHORT) 'REGIONAL' ! 'REGIONAL' or 'GLOBAL'
    ATMOS_DYN_DO logical .true.
    ATMOS_PHY_SF_DO logical .false.
    ATMOS_PHY_TB_DO logical .false.
    ATMOS_PHY_MP_DO logical .false.
    ATMOS_USE_QV logical .false.

History Output
No history output

Function/Subroutine Documentation

◆ atmos_setup()

subroutine mod_atmos_component::atmos_setup ( class(atmoscomponent), intent(inout), target this)

Definition at line 88 of file mod_atmos_component.F90.

89 use scale_const, only: &
90 undef8 => const_undef8
91
92 use scale_atmos_hydrometeor, only: &
93 atmos_hydrometeor_dry, &
94 atmos_hydrometeor_regist
95 use scale_atmos_thermodyn, only: &
96 atmos_thermodyn_setup
97 use scale_atmos_saturation, only: &
98 atmos_saturation_setup
99
102 use scale_time_manager, only: &
104
105 implicit none
106
107 class(AtmosComponent), intent(inout), target :: this
108
109 logical :: ACTIVATE_FLAG = .true.
110
111 real(DP) :: TIME_DT = undef8
112 character(len=H_SHORT) :: TIME_DT_UNIT = 'SEC'
113 real(DP) :: TIME_DT_RESTART = undef8
114 character(len=H_SHORT) :: TIME_DT_RESTART_UNIT = 'SEC'
115
116 logical :: ATMOS_DYN_DO = .true.
117 logical :: ATMOS_PHY_SF_DO = .false.
118 logical :: ATMOS_PHY_TB_DO = .false.
119 logical :: ATMOS_PHY_MP_DO = .false.
120 character(len=H_SHORT) :: ATMOS_MESH_TYPE = 'REGIONAL' ! 'REGIONAL' or 'GLOBAL'
121
122 logical :: ATMOS_USE_QV = .false.
123
124 namelist / param_atmos / &
125 activate_flag, &
126 time_dt, &
127 time_dt_unit, &
128 time_dt_restart, &
129 time_dt_restart_unit, &
130 atmos_mesh_type, &
131 atmos_dyn_do, &
132 atmos_phy_sf_do, &
133 atmos_phy_tb_do, &
134 atmos_phy_mp_do, &
135 atmos_use_qv
136
137 integer :: ierr
138 !--------------------------------------------------
139 call prof_rapstart( 'ATM_setup', 1)
140 log_info('AtmosComponent_setup',*) 'Atmosphere model components '
141
142 !--- read namelist
143 rewind(io_fid_conf)
144 read(io_fid_conf,nml=param_atmos,iostat=ierr)
145 if( ierr < 0 ) then !--- missing
146 log_info("ATMOS_setup",*) 'Not found namelist. Default used.'
147 elseif( ierr > 0 ) then !--- fatal error
148 log_error("ATM_setup",*) 'Not appropriate names in namelist PARAM_ATMOS. Check!'
149 call prc_abort
150 endif
151 log_nml(param_atmos)
152
153 !************************************************
154 call this%ModelComponent_Init('ATMOS', activate_flag )
155 if ( .not. activate_flag ) return
156
157 !- Setup time manager
158
159 call this%time_manager%Init( this%GetComponentName(), &
160 time_dt, time_dt_unit, &
161 time_dt_restart, time_dt_restart_unit )
162
163 call time_manager_regist_component( this%time_manager )
164
165 !- Setup mesh & file I/O for atmospheric component
166
167 this%mesh_type = atmos_mesh_type
168 select case( this%mesh_type )
169 case('REGIONAL')
170 call this%mesh_rm%Init()
171 call file_history_meshfield_setup( mesh3d_=this%mesh_rm%mesh )
172 this%mesh => this%mesh_rm
173 case('GLOBAL')
174 call this%mesh_gm%Init()
175 call file_history_meshfield_setup( meshcubedsphere3d_=this%mesh_gm%mesh )
176 this%mesh => this%mesh_gm
177 case default
178 log_error("ATM_setup",*) 'Unsupported type of mesh is specified. Check!', this%mesh_type
179 call prc_abort
180 end select
181
182 !- setup common tools for atmospheric model
183
184 call atmos_thermodyn_setup
185 call atmos_saturation_setup
186
187 !- Setup each processes in atmospheric model ------------------------------------
188
189 !- Setup the module for atmosphere / physics / surface
190 call this%phy_sfc_proc%ModelComponentProc_Init( 'AtmosPhysSfc', atmos_phy_sf_do )
191 call this%phy_sfc_proc%setup( this%mesh, this%time_manager )
192
193 !- Setup the module for atmosphere / physics / cloud microphysics
194 call this%phy_mp_proc%ModelComponentProc_Init( 'AtmosPhysMp', atmos_phy_mp_do )
195 call this%phy_mp_proc%setup( this%mesh, this%time_manager )
196
197 !-- Regist qv if needed
198 if ( atmos_hydrometeor_dry .and. atmos_use_qv ) then
199 log_info("ATMOS_setup",*) "Regist QV"
200 call atmos_hydrometeor_regist( 0, 0, & ! (in)
201 (/'QV'/), & ! (in)
202 (/'Ratio of Water Vapor mass to total mass (Specific humidity)'/), & ! (in)
203 (/'kg/kg'/), & ! (in)
204 this%phy_mp_proc%vars%QS ) ! (out)
205
206 this%phy_mp_proc%vars%QA = 1
207 this%phy_mp_proc%vars%QE = this%phy_mp_proc%vars%QS
208 end if
209
210 !- Setup the module for atmosphere / dynamics
211 call this%dyn_proc%ModelComponentProc_Init( 'AtmosDyn', atmos_dyn_do )
212 call this%dyn_proc%setup( this%mesh, this%time_manager )
213
214 !- Setup the module for atmosphere / physics / turbulence
215 call this%phy_tb_proc%ModelComponentProc_Init( 'AtmosPhysTb', atmos_phy_tb_do )
216 call this%phy_tb_proc%setup( this%mesh, this%time_manager )
217 call this%phy_tb_proc%SetDynBC( this%dyn_proc%dyncore_driver%boundary_cond )
218
219 log_newline
220 log_info('AtmosComponent_setup',*) 'Finish setup of each atmospheric components.'
221
222 call prof_rapend( 'ATM_setup', 1)
223
224 return
subroutine, public file_history_meshfield_setup(mesh1d_, mesh2d_, mesh3d_, meshcubedsphere2d_, meshcubedsphere3d_)
module common / time
subroutine, public time_manager_regist_component(tmanager_comp)

References mod_atmos_phy_mp_vars::atmosphympvars_getlocalmeshfields_sfcflx(), mod_atmos_vars::atmosvars_getlocalmeshphytends(), mod_atmos_vars::atmosvars_getlocalmeshsfcvar(), scale_file_history_meshfield::file_history_meshfield_setup(), scale_atm_dyn_dgm_nonhydro3d_common::phytend_dens_id, scale_atm_dyn_dgm_nonhydro3d_common::phytend_momx_id, scale_atm_dyn_dgm_nonhydro3d_common::phytend_momy_id, scale_atm_dyn_dgm_nonhydro3d_common::phytend_momz_id, scale_atm_dyn_dgm_nonhydro3d_common::phytend_num, scale_atm_dyn_dgm_nonhydro3d_common::phytend_rhoh_id, scale_atm_dyn_dgm_nonhydro3d_common::phytend_rhot_id, and scale_time_manager::time_manager_regist_component().