SCALE-RM
|
module ATMOSPHERE / Physics Aerosol Microphysics More...
Functions/Subroutines | |
subroutine, public | atmos_phy_ae_vars_setup |
Setup. More... | |
subroutine, public | atmos_phy_ae_vars_fillhalo |
HALO Communication. More... | |
subroutine, public | atmos_phy_ae_vars_restart_open |
Open restart file for read. More... | |
subroutine, public | atmos_phy_ae_vars_restart_read |
Read restart. More... | |
subroutine, public | atmos_phy_ae_vars_restart_create |
Create restart file. More... | |
subroutine, public | atmos_phy_ae_vars_restart_enddef |
Exit netCDF define mode. More... | |
subroutine, public | atmos_phy_ae_vars_restart_close |
Close restart file. More... | |
subroutine, public | atmos_phy_ae_vars_restart_def_var |
Write restart. More... | |
subroutine, public | atmos_phy_ae_vars_restart_write |
Write restart. More... | |
subroutine, public | atmos_phy_ae_vars_history (QTRC, RH) |
subroutine, public | atmos_phy_ae_vars_get_diagnostic (QTRC, RH, Re, Qe) |
subroutine, public | atmos_phy_ae_vars_reset_diagnostics |
Variables | |
logical, public | atmos_phy_ae_restart_output = .false. |
output restart file? More... | |
character(len=h_long), public | atmos_phy_ae_restart_in_basename = '' |
Basename of the input file. More... | |
logical, public | atmos_phy_ae_restart_in_aggregate |
Switch to use aggregate file. More... | |
logical, public | atmos_phy_ae_restart_in_postfix_timelabel = .false. |
Add timelabel to the basename of input file? More... | |
character(len=h_long), public | atmos_phy_ae_restart_out_basename = '' |
Basename of the output file. More... | |
logical, public | atmos_phy_ae_restart_out_aggregate |
Switch to use aggregate file. More... | |
logical, public | atmos_phy_ae_restart_out_postfix_timelabel = .true. |
Add timelabel to the basename of output file? More... | |
character(len=h_mid), public | atmos_phy_ae_restart_out_title = 'ATMOS_PHY_AE restart' |
title of the output file More... | |
character(len=h_short), public | atmos_phy_ae_restart_out_dtype = 'DEFAULT' |
REAL4 or REAL8. More... | |
real(rp), dimension(:,:,:,:), allocatable, public | atmos_phy_ae_rhoq_t |
real(rp), dimension(:,:,:), allocatable, public | atmos_phy_ae_ccn |
real(rp), dimension(:,:,:), allocatable, public | atmos_phy_ae_ccn_t |
real(rp), dimension(:,:,:,:), allocatable, public | atmos_phy_ae_emit |
integer, public | qa_ae = 0 |
integer, public | qs_ae = -1 |
integer, public | qe_ae = -2 |
module ATMOSPHERE / Physics Aerosol Microphysics
name | type | default value | comment |
---|---|---|---|
ATMOS_PHY_AE_RESTART_IN_BASENAME | character(len=H_LONG) | '' | Basename of the input file |
ATMOS_PHY_AE_RESTART_IN_AGGREGATE | logical | Switch to use aggregate file | |
ATMOS_PHY_AE_RESTART_IN_POSTFIX_TIMELABEL | logical | .false. | Add timelabel to the basename of input file? |
ATMOS_PHY_AE_RESTART_OUTPUT | logical | .false. | output restart file? |
ATMOS_PHY_AE_RESTART_OUT_BASENAME | character(len=H_LONG) | '' | Basename of the output file |
ATMOS_PHY_AE_RESTART_OUT_AGGREGATE | logical | Switch to use aggregate file | |
ATMOS_PHY_AE_RESTART_OUT_POSTFIX_TIMELABEL | logical | .true. | Add timelabel to the basename of output file? |
ATMOS_PHY_AE_RESTART_OUT_TITLE | character(len=H_MID) | 'ATMOS_PHY_AE restart' | title of the output file |
ATMOS_PHY_AE_RESTART_OUT_DTYPE | character(len=H_SHORT) | 'DEFAULT' | REAL4 or REAL8 |
name | description | unit | variable |
---|---|---|---|
Qe_{AE_NAME} | mass mixing ratio of {AE_NAME}; {AE_NAME} is AD, ASO, AVA, AS, AR, ASS, AU, AT, AOC. | kg/kg | {'Qe_'//trim} |
Re_{AE_NAME} | effective radius of {AE_NAME}; {AE_NAME} is AD, ASO, AVA, AS, AR, ASS, AU, AT, AOC. | cm | {'Re_'//trim} |
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_setup |
Setup.
Definition at line 109 of file mod_atmos_phy_ae_vars.F90.
References scale_atmos_aerosol::ae_desc, scale_atmos_aerosol::ae_name, atmos_phy_ae_ccn, atmos_phy_ae_ccn_t, atmos_phy_ae_emit, atmos_phy_ae_restart_in_aggregate, atmos_phy_ae_restart_in_basename, atmos_phy_ae_restart_in_postfix_timelabel, atmos_phy_ae_restart_out_aggregate, atmos_phy_ae_restart_out_basename, atmos_phy_ae_restart_out_dtype, atmos_phy_ae_restart_out_postfix_timelabel, atmos_phy_ae_restart_out_title, atmos_phy_ae_restart_output, atmos_phy_ae_rhoq_t, scale_const::const_undef, scale_file_history::file_history_reg(), scale_atmos_grid_cartesc_index::ia, scale_io::io_fid_conf, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::ka, scale_atmos_aerosol::n_ae, scale_prc::prc_abort(), qe_ae, and qs_ae.
Referenced by mod_atmos_vars::atmos_vars_setup().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_fillhalo |
HALO Communication.
Definition at line 219 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_ccn, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, and scale_atmos_grid_cartesc_index::ks.
Referenced by atmos_phy_ae_vars_restart_read(), and atmos_phy_ae_vars_restart_write().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_open |
Open restart file for read.
Definition at line 243 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_restart_in_aggregate, atmos_phy_ae_restart_in_basename, atmos_phy_ae_restart_in_postfix_timelabel, scale_file_cartesc::file_cartesc_open(), and scale_time::time_gettimelabel().
Referenced by mod_atmos_vars::atmos_vars_restart_open().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_read |
Read restart.
Definition at line 278 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_ccn, atmos_phy_ae_vars_fillhalo(), scale_file_cartesc::file_cartesc_flush(), scale_file::file_get_aggregate(), scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, and scale_atmos_grid_cartesc_index::ks.
Referenced by mod_atmos_vars::atmos_vars_restart_read().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_create |
Create restart file.
Definition at line 321 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_restart_out_aggregate, atmos_phy_ae_restart_out_basename, atmos_phy_ae_restart_out_dtype, atmos_phy_ae_restart_out_postfix_timelabel, atmos_phy_ae_restart_out_title, scale_file_cartesc::file_cartesc_create(), and scale_time::time_gettimelabel().
Referenced by mod_atmos_vars::atmos_vars_restart_create().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_enddef |
Exit netCDF define mode.
Definition at line 358 of file mod_atmos_phy_ae_vars.F90.
References scale_file_cartesc::file_cartesc_enddef().
Referenced by mod_atmos_vars::atmos_vars_restart_enddef().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_close |
Close restart file.
Definition at line 372 of file mod_atmos_phy_ae_vars.F90.
References scale_file_cartesc::file_cartesc_close().
Referenced by mod_atmos_vars::atmos_vars_restart_close().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_def_var |
Write restart.
Definition at line 392 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_restart_out_dtype, and scale_file_cartesc::file_cartesc_def_var().
Referenced by mod_atmos_vars::atmos_vars_restart_def_var().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_restart_write |
Write restart.
Definition at line 408 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_ccn, and atmos_phy_ae_vars_fillhalo().
Referenced by mod_atmos_vars::atmos_vars_restart_write().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_history | ( | real(rp), dimension(ka,ia,ja,qa), intent(in) | QTRC, |
real(rp), dimension(ka,ia,ja), intent(in) | RH | ||
) |
Definition at line 428 of file mod_atmos_phy_ae_vars.F90.
References atmos_phy_ae_vars_get_diagnostic(), scale_atmos_aerosol::n_ae, and scale_tracer::qa.
Referenced by mod_atmos_vars::atmos_vars_history().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_get_diagnostic | ( | real(rp), dimension(ka,ia,ja,qa), intent(in) | QTRC, |
real(rp), dimension(ka,ia,ja), intent(in) | RH, | ||
real(rp), dimension(ka,ia,ja,n_ae), intent(out), optional | Re, | ||
real(rp), dimension(ka,ia,ja,n_ae), intent(out), optional | Qe | ||
) |
Definition at line 466 of file mod_atmos_phy_ae_vars.F90.
References scale_atmos_phy_ae_kajino13::atmos_phy_ae_kajino13_effective_radius(), scale_atmos_phy_ae_offline::atmos_phy_ae_offline_effective_radius(), scale_atmos_phy_ae_offline::atmos_phy_ae_offline_qtrc2qaero(), mod_atmos_admin::atmos_phy_ae_type, scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::ka, scale_atmos_aerosol::n_ae, scale_tracer::qa, qa_ae, qe_ae, qs_ae, and scale_time::time_nowdaysec.
Referenced by atmos_phy_ae_vars_history(), and mod_atmos_phy_rd_driver::atmos_phy_rd_driver_calc_tendency().
subroutine, public mod_atmos_phy_ae_vars::atmos_phy_ae_vars_reset_diagnostics |
Definition at line 532 of file mod_atmos_phy_ae_vars.F90.
References scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_totvol, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_vol, atmos_phy_ae_ccn, scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::ks, and scale_statistics::statistics_checktotal.
Referenced by mod_atmos_vars::atmos_vars_calc_diagnostics().
logical, public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_output = .false. |
output restart file?
Definition at line 49 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), and atmos_phy_ae_vars_setup().
character(len=h_long), public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_in_basename = '' |
Basename of the input file.
Definition at line 51 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_open(), and atmos_phy_ae_vars_setup().
logical, public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_in_aggregate |
Switch to use aggregate file.
Definition at line 52 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_open(), and atmos_phy_ae_vars_setup().
logical, public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_in_postfix_timelabel = .false. |
Add timelabel to the basename of input file?
Definition at line 53 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_open(), and atmos_phy_ae_vars_setup().
character(len=h_long), public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_out_basename = '' |
Basename of the output file.
Definition at line 54 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_create(), and atmos_phy_ae_vars_setup().
logical, public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_out_aggregate |
Switch to use aggregate file.
Definition at line 55 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_create(), and atmos_phy_ae_vars_setup().
logical, public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_out_postfix_timelabel = .true. |
Add timelabel to the basename of output file?
Definition at line 56 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_create(), and atmos_phy_ae_vars_setup().
character(len=h_mid), public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_out_title = 'ATMOS_PHY_AE restart' |
title of the output file
Definition at line 57 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_create(), and atmos_phy_ae_vars_setup().
character(len=h_short), public mod_atmos_phy_ae_vars::atmos_phy_ae_restart_out_dtype = 'DEFAULT' |
REAL4 or REAL8.
Definition at line 58 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_admin_restart::admin_restart_setup(), atmos_phy_ae_vars_restart_create(), atmos_phy_ae_vars_restart_def_var(), and atmos_phy_ae_vars_setup().
real(rp), dimension(:,:,:,:), allocatable, public mod_atmos_phy_ae_vars::atmos_phy_ae_rhoq_t |
Definition at line 60 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), and atmos_phy_ae_vars_setup().
real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_ae_vars::atmos_phy_ae_ccn |
Definition at line 62 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), atmos_phy_ae_vars_fillhalo(), atmos_phy_ae_vars_reset_diagnostics(), atmos_phy_ae_vars_restart_read(), atmos_phy_ae_vars_restart_write(), and atmos_phy_ae_vars_setup().
real(rp), dimension(:,:,:), allocatable, public mod_atmos_phy_ae_vars::atmos_phy_ae_ccn_t |
Definition at line 63 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), atmos_phy_ae_vars_setup(), and mod_atmos_phy_mp_driver::atmos_phy_mp_driver_calc_tendency().
real(rp), dimension(:,:,:,:), allocatable, public mod_atmos_phy_ae_vars::atmos_phy_ae_emit |
Definition at line 64 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), and atmos_phy_ae_vars_setup().
integer, public mod_atmos_phy_ae_vars::qa_ae = 0 |
Definition at line 66 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_adjustment(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_tracer_setup(), atmos_phy_ae_vars_get_diagnostic(), and mod_mkinit::rect_setup().
integer, public mod_atmos_phy_ae_vars::qs_ae = -1 |
Definition at line 67 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_adjustment(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_tracer_setup(), atmos_phy_ae_vars_get_diagnostic(), atmos_phy_ae_vars_setup(), and mod_mkinit::rect_setup().
integer, public mod_atmos_phy_ae_vars::qe_ae = -2 |
Definition at line 68 of file mod_atmos_phy_ae_vars.F90.
Referenced by mod_atmos_phy_ae_driver::atmos_phy_ae_driver_adjustment(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_calc_tendency(), mod_atmos_phy_ae_driver::atmos_phy_ae_driver_tracer_setup(), atmos_phy_ae_vars_get_diagnostic(), atmos_phy_ae_vars_setup(), and mod_mkinit::rect_setup().