Changes between Version 110 and Version 111 of Documentation/TrunkFunctionality4


Ignore:
Timestamp:
2021-11-18T15:54:32+01:00 (2 years ago)
Author:
luyssaert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/TrunkFunctionality4

    v110 v111  
    511511 
    512512=== Soil maps === 
    513 Describes r6614. ORCHIDEE trunk runs for two soil maps: zobler (3 soil types) and usda (12 soil types). Although the usda map has been the default for a while, ORCHIDEE trunk is back at using Zobler due to yet to resolve issues with the usda map. The code has been adjusted in hydraulic_architect.f90 and stomate_windthrow.f90 so it works with Zobler and usda. The soil map can be selected run.def by setting the value for '''soiltype_classif''': 
     513Describes r7352. ORCHIDEE trunk runs for two soil maps: zobler (3 soil types) and usda (12 soil types). Although the usda map has been the default for a while, ORCHIDEE trunk is back at using Zobler due to yet to resolve issues with the usda map. The code has been adjusted in hydraulic_architect.f90 and stomate_windthrow.f90 so it works with Zobler and usda. The soil map can be selected run.def by setting the value for '''soiltype_classif''': 
     514{{{ 
     515SOILTYPE_CLASSIF= zobler 
     516}}} 
     517The file names of the maps that need to be read can be set in the COMP/sechiba.card: 
     518{{{ 
     519 (${R_IN}/SRF/SOIL/soils_param.nc, soils_param.nc) 
     520}}} 
     521If you are the background albedo is calculated from the soil color, the model will find the information it needs it the ${R_IN}/SRF/SOIL/soils_param.nc file. If you want to use the background albedo based on MODIS set ALB_BG_MODIS to Y in the orchidee.def and specify the following in COMP/sechiba.card 
     522{{{ 
     523 (${R_IN}/SRF/albedo/alb_bg_modisopt_2D_ESA_v2.nc, alb_bg.nc) 
     524}}} 
     525  
     526 
     527The usda map does not contain the soil colors so when using the albedo background map (thus alb_bg_modis = y) set: 
    514528{{{ 
    515529SOILTYPE_CLASSIF= usda 
    516 SOILTYPE_CLASSIF= zobler 
    517 }}} 
    518 or  
    519 The file names of the maps that need to be read can be set in the COMP/sechiba.card: 
    520 {{{ 
    521  (${R_IN}/SRF/SOIL/File_name, soil_bulk_and_ph.nc), \ 
    522  (${R_IN}/SRF/SOIL/File_name, soils_param.nc) 
    523 }}} 
    524  
     530}}} 
     531in the orchidee.def and change the COMP/sechiba.card: 
     532{{{ 
     533 (${R_IN}/SRF/SOIL/soils_param_usdatop4.nc, soils_param.nc),\ 
     534 (${R_IN}/SRF/albedo/alb_bg_modisopt_2D_ESA_v2.nc, alb_bg.nc) 
     535}}} 
     536 
     537when using usda without the albedo background map (thus alb_bg_modis = y) set: 
     538{{{ 
     539SOILTYPE_CLASSIF= usda 
     540SOILALB_FILE=soilcolor.nc 
     541}}} 
     542in the orchidee.def and change the COMP/sechiba.card: 
     543{{{ 
     544 (${R_IN}/SRF/SOIL/soils_param_usdatop4.nc, soils_param.nc),\ 
     545 (${R_IN}/SRF/SOIL/soils_param.nc, soilcolor.nc) 
     546}}} 
     547The model will now read the soil color from the zobler map.  
    525548 
    526549=== Single vs multi layer energy budget ===