SCALE-RM
|
module LAND Variables More...
Functions/Subroutines | |
subroutine, public | land_vars_setup |
Setup. More... | |
subroutine, public | land_vars_restart_open |
Open land restart file for read. More... | |
subroutine, public | land_vars_restart_read |
Read land restart. More... | |
subroutine, public | land_vars_history |
History output set for land variables. More... | |
subroutine, public | land_vars_total |
Budget monitor for land. More... | |
subroutine, public | land_vars_external_in (LAND_TEMP_in, LAND_WATER_in, LAND_SFC_TEMP_in, LAND_SFC_albedo_in) |
Input from External I/O. More... | |
real(rp) function, dimension(ia, ja), public | convert_ws2vwc (WS, critical) |
conversion from water saturation [fraction] to volumetric water content [m3/m3] More... | |
subroutine, public | land_vars_restart_create |
Create land restart file. More... | |
subroutine, public | land_vars_restart_enddef |
Exit netCDF define mode. More... | |
subroutine, public | land_vars_restart_close |
Close restart file. More... | |
subroutine, public | land_vars_restart_def_var |
Define land variables in restart file. More... | |
subroutine, public | land_vars_restart_write |
Write land variables to restart file. More... | |
Variables | |
logical, public | land_restart_output = .false. |
Output restart file? More... | |
character(len=h_long), public | land_restart_in_basename = '' |
Basename of the input file. More... | |
logical, public | land_restart_in_postfix_timelabel = .false. |
Add timelabel to the basename of input file? More... | |
character(len=h_long), public | land_restart_out_basename = '' |
Basename of the output file. More... | |
logical, public | land_restart_out_postfix_timelabel = .true. |
Add timelabel to the basename of output file? More... | |
character(len=h_mid), public | land_restart_out_title = 'LAND restart' |
Title of the output file. More... | |
character(len=h_short), public | land_restart_out_dtype = 'DEFAULT' |
REAL4 or REAL8. More... | |
real(rp), dimension(:,:,:), allocatable, public | land_temp |
temperature of each soil layer [K] More... | |
real(rp), dimension(:,:,:), allocatable, public | land_water |
moisture of each soil layer [m3/m3] More... | |
real(rp), dimension(:,:), allocatable, public | land_sfc_temp |
land surface skin temperature [K] More... | |
real(rp), dimension(:,:,:), allocatable, public | land_sfc_albedo |
land surface albedo (0-1) More... | |
real(rp), dimension(:,:,:), allocatable, public | land_temp_t |
tendency of LAND_TEMP More... | |
real(rp), dimension(:,:,:), allocatable, public | land_water_t |
tendency of LAND_WATER More... | |
real(rp), dimension(:,:), allocatable, public | land_sfc_temp_t |
tendency of LAND_SFC_TEMP More... | |
real(rp), dimension(:,:,:), allocatable, public | land_sfc_albedo_t |
tendency of LAND_SFC_albedo More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_mw |
land surface w-momentum flux [kg/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_mu |
land surface u-momentum flux [kg/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_mv |
land surface v-momentum flux [kg/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_sh |
land surface sensible heat flux [J/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_lh |
land surface latent heat flux [J/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_gh |
land surface heat flux [J/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_sflx_evap |
land surface water vapor flux [kg/m2/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_u10 |
land surface velocity u at 10m [m/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_v10 |
land surface velocity v at 10m [m/s] More... | |
real(rp), dimension(:,:), allocatable, public | land_t2 |
land surface temperature at 2m [K] More... | |
real(rp), dimension(:,:), allocatable, public | land_q2 |
land surface water vapor at 2m [kg/kg] More... | |
real(rp), dimension(:,:), allocatable, public | atmos_temp |
real(rp), dimension(:,:), allocatable, public | atmos_pres |
real(rp), dimension(:,:), allocatable, public | atmos_w |
real(rp), dimension(:,:), allocatable, public | atmos_u |
real(rp), dimension(:,:), allocatable, public | atmos_v |
real(rp), dimension(:,:), allocatable, public | atmos_dens |
real(rp), dimension(:,:), allocatable, public | atmos_qv |
real(rp), dimension(:,:), allocatable, public | atmos_pbl |
real(rp), dimension(:,:), allocatable, public | atmos_sfc_pres |
real(rp), dimension(:,:), allocatable, public | atmos_sflx_lw |
real(rp), dimension(:,:), allocatable, public | atmos_sflx_sw |
real(rp), dimension(:,:), allocatable, public | atmos_cossza |
real(rp), dimension(:,:), allocatable, public | atmos_sflx_prec |
real(rp), dimension(:,:,:), allocatable, public | land_property |
land surface property More... | |
character(len=h_long), public | land_property_in_filename = '' |
the file of land parameter table More... | |
integer, parameter, public | land_property_nmax = 8 |
integer, parameter, public | i_waterlimit = 1 |
integer, parameter, public | i_watercritical = 2 |
integer, parameter, public | i_thermalcond = 3 |
integer, parameter, public | i_heatcapacity = 4 |
integer, parameter, public | i_waterdiff = 5 |
integer, parameter, public | i_z0m = 6 |
integer, parameter, public | i_z0h = 7 |
integer, parameter, public | i_z0e = 8 |
module LAND Variables
name | type | default value | comment |
---|---|---|---|
LAND_RESTART_IN_BASENAME | character(len=H_LONG) | '' | Basename of the input file |
LAND_RESTART_IN_POSTFIX_TIMELABEL | logical | .false. | Add timelabel to the basename of input file? |
LAND_RESTART_IN_CHECK_COORDINATES | logical | .true. | |
LAND_RESTART_OUTPUT | logical | .false. | Output restart file? |
LAND_RESTART_OUT_BASENAME | character(len=H_LONG) | '' | Basename of the output file |
LAND_RESTART_OUT_POSTFIX_TIMELABEL | logical | .true. | Add timelabel to the basename of output file? |
LAND_RESTART_OUT_TITLE | character(len=H_MID) | 'LAND restart' | Title of the output file |
LAND_RESTART_OUT_DTYPE | character(len=H_SHORT) | 'DEFAULT' | REAL4 or REAL8 |
LAND_VARS_CHECKRANGE | logical | .false. |
name | type | default value | comment |
---|---|---|---|
LAND_PROPERTY_IN_FILENAME | character(len=H_LONG) | '' | the file of land parameter table |
name | type | default value | comment |
---|---|---|---|
INDEX | integer | ||
DESCRIPTION | character(len=H_MID) | ||
STRGMAX | real(RP) | ||
STRGCRT | real(RP) | ||
TCS | real(RP) | ||
HCS | real(RP) | ||
DFW | real(RP) | ||
Z0M | real(RP) | ||
Z0H | real(RP) | ||
Z0E | real(RP) |
name | description | unit | variable |
---|---|---|---|
LAND_ALB_LW | land surface albedo (longwave) | 1 | LAND_SFC_albedo |
LAND_ALB_SW | land surface albedo (shortwave) | 1 | LAND_SFC_albedo |
LAND_SFC_TEMP | land surface skin temperature | K | LAND_SFC_TEMP |
LAND_SFLX_GH | land surface ground heat flux | J/m2/s | LAND_SFLX_GH |
LAND_SFLX_LH | land surface latent heat flux | J/m2/s | LAND_SFLX_LH |
LAND_SFLX_MU | land surface u-momentum flux | kg/m2/s | LAND_SFLX_MU |
LAND_SFLX_MV | land surface v-momentum flux | kg/m2/s | LAND_SFLX_MV |
LAND_SFLX_MW | land surface w-momentum flux | kg/m2/s | LAND_SFLX_MW |
LAND_SFLX_SH | land surface sensible heat flux | J/m2/s | LAND_SFLX_SH |
LAND_SFLX_evap | land surface water vapor flux | kg/m2/s | LAND_SFLX_evap |
LAND_TEMP | temperature at each soil layer | K | LAND_TEMP |
LAND_WATER | moisture at each soil layer | m3/m3 | LAND_WATER |
LAND_DSAT | degree of saturation at each soil layer | 1 | LAND_WATERDS |
subroutine, public mod_land_vars::land_vars_setup | ( | ) |
Setup.
Definition at line 202 of file mod_land_vars.f90.
References atmos_cossza, atmos_dens, atmos_pbl, atmos_pres, atmos_qv, atmos_sfc_pres, atmos_sflx_lw, atmos_sflx_prec, atmos_sflx_sw, atmos_temp, atmos_u, atmos_v, atmos_w, scale_const::const_undef, scale_grid_index::ia, scale_grid_index::ie, scale_stdio::io_fid_conf, scale_stdio::io_fid_log, scale_stdio::io_fid_nml, scale_stdio::io_l, scale_stdio::io_nml, scale_grid_index::is, scale_grid_index::ja, scale_grid_index::je, scale_grid_index::js, land_property, land_property_nmax, land_q2, land_restart_in_basename, land_restart_in_postfix_timelabel, land_restart_out_basename, land_restart_out_dtype, land_restart_out_postfix_timelabel, land_restart_out_title, land_restart_output, land_sfc_albedo, land_sfc_albedo_t, land_sfc_temp, land_sfc_temp_t, land_sflx_evap, land_sflx_gh, land_sflx_lh, land_sflx_mu, land_sflx_mv, land_sflx_mw, land_sflx_sh, land_t2, land_temp, land_temp_t, land_u10, land_v10, land_water, land_water_t, scale_landuse::landuse_index_pft, scale_landuse::landuse_pft_nmax, scale_land_grid_index::lkmax, and scale_process::prc_mpistop().
Referenced by mod_rm_driver::scalerm(), and mod_rm_prep::scalerm_prep().
subroutine, public mod_land_vars::land_vars_restart_open | ( | ) |
Open land restart file for read.
Definition at line 376 of file mod_land_vars.f90.
References scale_fileio::fileio_open(), scale_stdio::io_fid_log, scale_stdio::io_l, land_restart_in_basename, land_restart_in_postfix_timelabel, mod_land_admin::land_sw, and scale_time::time_gettimelabel().
Referenced by mod_admin_restart::admin_restart_read().
subroutine, public mod_land_vars::land_vars_restart_read | ( | ) |
Read land restart.
Definition at line 420 of file mod_land_vars.f90.
References scale_fileio::fileio_flush(), scale_stdio::io_aggregate, scale_stdio::io_fid_log, scale_stdio::io_l, land_sfc_albedo, land_sfc_temp, land_sflx_evap, land_sflx_gh, land_sflx_lh, land_sflx_mu, land_sflx_mv, land_sflx_mw, land_sflx_sh, land_temp, land_vars_total(), and land_water.
Referenced by mod_admin_restart::admin_restart_read(), and mod_rm_driver::resume_state().
subroutine, public mod_land_vars::land_vars_history | ( | ) |
History output set for land variables.
Definition at line 468 of file mod_land_vars.f90.
References i_waterlimit, scale_grid_index::ie, scale_grid_index::is, scale_grid_index::je, scale_grid_index::js, land_property, land_sfc_albedo, land_sfc_temp, land_sflx_evap, land_sflx_gh, land_sflx_lh, land_sflx_mu, land_sflx_mv, land_sflx_mw, land_sflx_sh, land_temp, land_water, and scale_land_grid_index::lkmax.
Referenced by mod_land_driver::land_driver(), and mod_land_driver::land_driver_resume().
subroutine, public mod_land_vars::land_vars_total | ( | ) |
Budget monitor for land.
Definition at line 519 of file mod_land_vars.f90.
References land_sfc_albedo, land_sfc_temp, land_temp, land_water, scale_land_grid_index::lke, scale_land_grid_index::lks, and scale_rm_statistics::statistics_checktotal.
Referenced by mod_land_driver::land_driver(), land_vars_external_in(), land_vars_restart_read(), and land_vars_restart_write().
subroutine, public mod_land_vars::land_vars_external_in | ( | real(rp), dimension (:,:,:), intent(in) | LAND_TEMP_in, |
real(rp), dimension(:,:,:), intent(in) | LAND_WATER_in, | ||
real(rp), dimension (ia,ja), intent(in) | LAND_SFC_TEMP_in, | ||
real(rp), dimension(ia,ja,2), intent(in) | LAND_SFC_albedo_in | ||
) |
Input from External I/O.
Definition at line 555 of file mod_land_vars.f90.
References i_heatcapacity, i_thermalcond, i_watercritical, i_waterdiff, i_waterlimit, i_z0e, i_z0h, i_z0m, scale_stdio::io_fid_conf, scale_stdio::io_fid_log, scale_stdio::io_fid_nml, scale_stdio::io_get_available_fid(), scale_stdio::io_l, scale_stdio::io_nml, land_property_in_filename, land_sfc_albedo, land_sfc_temp, land_sflx_evap, land_sflx_gh, land_sflx_lh, land_sflx_mu, land_sflx_mv, land_sflx_mw, land_sflx_sh, land_temp, land_vars_total(), land_water, scale_landuse::landuse_pft_nmax, and scale_process::prc_mpistop().
real(rp) function, dimension(ia,ja), public mod_land_vars::convert_ws2vwc | ( | real(rp), dimension(ia,ja), intent(in) | WS, |
logical, intent(in) | critical | ||
) |
conversion from water saturation [fraction] to volumetric water content [m3/m3]
Definition at line 720 of file mod_land_vars.f90.
References i_watercritical, i_waterlimit, scale_grid_index::ie, scale_grid_index::is, scale_grid_index::je, scale_grid_index::js, and land_property.
Referenced by mod_realinput::land_interporation().
subroutine, public mod_land_vars::land_vars_restart_create | ( | ) |
Create land restart file.
Definition at line 749 of file mod_land_vars.f90.
References scale_fileio::fileio_create(), scale_stdio::io_fid_log, scale_stdio::io_l, land_restart_out_basename, land_restart_out_dtype, land_restart_out_postfix_timelabel, land_restart_out_title, mod_land_admin::land_sw, and scale_time::time_gettimelabel().
Referenced by mod_admin_restart::admin_restart_write().
subroutine, public mod_land_vars::land_vars_restart_enddef | ( | ) |
Exit netCDF define mode.
Definition at line 786 of file mod_land_vars.f90.
References scale_fileio::fileio_enddef().
Referenced by mod_admin_restart::admin_restart_write().
subroutine, public mod_land_vars::land_vars_restart_close | ( | ) |
Close restart file.
Definition at line 800 of file mod_land_vars.f90.
References scale_fileio::fileio_close(), scale_stdio::io_fid_log, and scale_stdio::io_l.
Referenced by mod_admin_restart::admin_restart_read(), and mod_admin_restart::admin_restart_write().
subroutine, public mod_land_vars::land_vars_restart_def_var | ( | ) |
Define land variables in restart file.
Definition at line 820 of file mod_land_vars.f90.
References scale_fileio::fileio_def_var(), and land_restart_out_dtype.
Referenced by mod_admin_restart::admin_restart_write().
subroutine, public mod_land_vars::land_vars_restart_write | ( | ) |
Write land variables to restart file.
Definition at line 860 of file mod_land_vars.f90.
References land_sfc_albedo, land_sfc_temp, land_sflx_evap, land_sflx_gh, land_sflx_lh, land_sflx_mu, land_sflx_mv, land_sflx_mw, land_sflx_sh, land_temp, land_vars_total(), and land_water.
Referenced by mod_admin_restart::admin_restart_write().
logical, public mod_land_vars::land_restart_output = .false. |
Output restart file?
Definition at line 52 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), mod_admin_restart::admin_restart_write(), and land_vars_setup().
character(len=h_long), public mod_land_vars::land_restart_in_basename = '' |
Basename of the input file.
Definition at line 54 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_open(), and land_vars_setup().
logical, public mod_land_vars::land_restart_in_postfix_timelabel = .false. |
Add timelabel to the basename of input file?
Definition at line 55 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_open(), and land_vars_setup().
character(len=h_long), public mod_land_vars::land_restart_out_basename = '' |
Basename of the output file.
Definition at line 56 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_create(), and land_vars_setup().
logical, public mod_land_vars::land_restart_out_postfix_timelabel = .true. |
Add timelabel to the basename of output file?
Definition at line 57 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_create(), and land_vars_setup().
character(len=h_mid), public mod_land_vars::land_restart_out_title = 'LAND restart' |
Title of the output file.
Definition at line 58 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_create(), and land_vars_setup().
character(len=h_short), public mod_land_vars::land_restart_out_dtype = 'DEFAULT' |
REAL4 or REAL8.
Definition at line 59 of file mod_land_vars.f90.
Referenced by mod_admin_restart::admin_restart_setup(), land_vars_restart_create(), land_vars_restart_def_var(), and land_vars_setup().
real(rp), dimension (:,:,:), allocatable, public mod_land_vars::land_temp |
temperature of each soil layer [K]
Definition at line 62 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), mod_mkinit::land_setup(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), land_vars_setup(), land_vars_total(), and mod_realinput::realinput_surface().
real(rp), dimension (:,:,:), allocatable, public mod_land_vars::land_water |
moisture of each soil layer [m3/m3]
Definition at line 63 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), mod_mkinit::land_setup(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), land_vars_setup(), land_vars_total(), and mod_realinput::realinput_surface().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sfc_temp |
land surface skin temperature [K]
Definition at line 64 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), mod_mkinit::land_setup(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), land_vars_setup(), land_vars_total(), and mod_realinput::realinput_surface().
real(rp), dimension(:,:,:), allocatable, public mod_land_vars::land_sfc_albedo |
land surface albedo (0-1)
Definition at line 65 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), mod_mkinit::land_setup(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), land_vars_setup(), land_vars_total(), and mod_realinput::realinput_surface().
real(rp), dimension (:,:,:), allocatable, public mod_land_vars::land_temp_t |
tendency of LAND_TEMP
Definition at line 68 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), and land_vars_setup().
real(rp), dimension (:,:,:), allocatable, public mod_land_vars::land_water_t |
tendency of LAND_WATER
Definition at line 69 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sfc_temp_t |
tendency of LAND_SFC_TEMP
Definition at line 70 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), and land_vars_setup().
real(rp), dimension(:,:,:), allocatable, public mod_land_vars::land_sfc_albedo_t |
tendency of LAND_SFC_albedo
Definition at line 71 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_driver(), mod_land_phy_driver::land_phy_driver(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_mw |
land surface w-momentum flux [kg/m2/s]
Definition at line 74 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_mu |
land surface u-momentum flux [kg/m2/s]
Definition at line 75 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_mv |
land surface v-momentum flux [kg/m2/s]
Definition at line 76 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_sh |
land surface sensible heat flux [J/m2/s]
Definition at line 77 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_lh |
land surface latent heat flux [J/m2/s]
Definition at line 78 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_sflx_gh |
land surface heat flux [J/m2/s]
Definition at line 79 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension(:,:), allocatable, public mod_land_vars::land_sflx_evap |
land surface water vapor flux [kg/m2/s]
Definition at line 80 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_external_in(), land_vars_history(), land_vars_restart_read(), land_vars_restart_write(), and land_vars_setup().
real(rp), dimension(:,:), allocatable, public mod_land_vars::land_u10 |
land surface velocity u at 10m [m/s]
Definition at line 83 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_setup().
real(rp), dimension(:,:), allocatable, public mod_land_vars::land_v10 |
land surface velocity v at 10m [m/s]
Definition at line 84 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_t2 |
land surface temperature at 2m [K]
Definition at line 85 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::land_q2 |
land surface water vapor at 2m [kg/kg]
Definition at line 86 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_temp |
Definition at line 89 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_pres |
Definition at line 90 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_w |
Definition at line 91 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_u |
Definition at line 92 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_v |
Definition at line 93 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_dens |
Definition at line 94 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_qv |
Definition at line 95 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_pbl |
Definition at line 96 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_sfc_pres |
Definition at line 97 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_sflx_lw |
Definition at line 98 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_sflx_sw |
Definition at line 99 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:), allocatable, public mod_land_vars::atmos_cossza |
Definition at line 100 of file mod_land_vars.f90.
Referenced by mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension(:,:), allocatable, public mod_land_vars::atmos_sflx_prec |
Definition at line 101 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_get(), and land_vars_setup().
real(rp), dimension (:,:,:), allocatable, public mod_land_vars::land_property |
land surface property
Definition at line 103 of file mod_land_vars.f90.
Referenced by convert_ws2vwc(), mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), land_vars_history(), and land_vars_setup().
character(len=h_long), public mod_land_vars::land_property_in_filename = '' |
the file of land parameter table
Definition at line 105 of file mod_land_vars.f90.
Referenced by land_vars_external_in().
integer, parameter, public mod_land_vars::land_property_nmax = 8 |
Definition at line 107 of file mod_land_vars.f90.
Referenced by land_vars_setup().
integer, parameter, public mod_land_vars::i_waterlimit = 1 |
Definition at line 108 of file mod_land_vars.f90.
Referenced by convert_ws2vwc(), mod_land_phy_driver::land_phy_driver(), land_vars_external_in(), and land_vars_history().
integer, parameter, public mod_land_vars::i_watercritical = 2 |
Definition at line 109 of file mod_land_vars.f90.
Referenced by convert_ws2vwc(), mod_land_phy_driver::land_phy_driver(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_thermalcond = 3 |
Definition at line 110 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_heatcapacity = 4 |
Definition at line 111 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_waterdiff = 5 |
Definition at line 112 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_z0m = 6 |
Definition at line 113 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_z0h = 7 |
Definition at line 114 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_external_in().
integer, parameter, public mod_land_vars::i_z0e = 8 |
Definition at line 115 of file mod_land_vars.f90.
Referenced by mod_land_phy_driver::land_phy_driver(), mod_land_driver::land_surface_set(), and land_vars_external_in().