Changes between Version 79 and Version 80 of doc/app/land_surface_parameters
- Timestamp:
- Jan 9, 2018 11:35:17 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/land_surface_parameters
v79 v80 6 6 All parts of the LSM code are modularized in module [/browser/palm/trunk/SOURCE/land_surface_model.f90 land_surface_model_mod]. In this context, a new Fortran NAMELIST {{{lsm_par}}} was added, containing all LSM-related steering parameters. The LSM is automatically activated when a {{{lsm_par}}} is set in the parameter file ({{{_p3d}}}). The user can easily set all relevant LSM parameters by choosing between 3 different surface types (vegetation, pavement, water) and various pre-defined surface classes 17 pre-defined [#vegetation_type vegetation types], 7 pre-defined [#pavement_type pavement type]s, 4 pre-defined [#water_type water types], and 6 different [#soil_type soil types]. The default setting of the LSM is a soil of medium porosity covered to 85% with short grass. It is also possible to modify the pre-defined vegetation/soil types by overwriting some of the parameters. Moreover it is possible to create user-defined vegetation and soil types from scratch. 7 7 8 A minimum configuration of the LSM requires setting of the parameters [#soil_type soil_type], [#vegetation_type vegetation_type], [#soil_temperature soil_temperature], and [#soil_moisture soil_moisture].8 A minimum configuration of the LSM requires setting of the parameters [#soil_type soil_type], [#vegetation_type vegetation_type], [#soil_temperature soil_temperature], [#deep_soil_temperature deep_soil_temperature], and [#soil_moisture soil_moisture]. 9 9 10 10 Note that the use of the LSM requires using a [wiki:doc/tec/radiation radiation model]. … … 125 125 {{{#!td 126 126 Keep prescribed roughness length constant in time. This parameter only applied to [#water_surface water_surface]s, where the roughness lengths may depend on wind speed and usually follows parameterizations after Charnock (1955) and Beljaars (1994). 127 }}} 128 |---------------- 129 {{{#!td style="vertical-align:top" 130 [=#deep_soil_temperature'''deep_soil_temperature'''] 131 }}} 132 {{{#!td style="vertical-align:top" 133 R 134 }}} 135 {{{#!td style="vertical-align:top" 136 9999999.9 137 }}} 138 {{{#!td 139 Deep soil temperature (K) used as bottom boundary condition for the heat diffusion in the soil model. 127 140 }}} 128 141 |---------------- … … 507 520 }}} 508 521 {{{#!td style="vertical-align:top" 509 see Description 522 20*9999999.9 510 523 }}} 511 524 {{{#!td 512 525 Soil temperature distribution over the N soil layers (in K). 513 526 514 ''' Default(eight layer configuration):'''527 '''Example (eight layer configuration):''' 515 528 {{{ 516 soil_temperature = 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0,517 }}} 518 The first eight values here represent the temperature of the soil layers (defined at the center of the layers of depths [#dz_soil dz_soil]. An additional value must be provided (here the ninth) which represents the bottom boundary condition (deep soil temperature). Note that this implies that for N soil layers, soil_temperature requires N+1 values, while soil_moisture and dz_soil both must be of size N.529 soil_temperature = 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 530 }}} 531 The eight values here represent the temperature of the soil layers (defined at the center of the layers of depths [#dz_soil dz_soil]. 519 532 }}} 520 533 |----------------