Changes between Version 2 and Version 3 of DevelopmentActivities/ORCHIDEE-MICT-IMBALANCE-P/Evaluation


Ignore:
Timestamp:
2015-08-25T10:22:39+02:00 (9 years ago)
Author:
maignan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-MICT-IMBALANCE-P/Evaluation

    v2 v3  
    7474== Notes from F. Maignan == 
    7575 
    76 === 2015/08/21 === 
    77 I've started a 2 degree V6 evaluation here: 
     76I've started a 2 degree V6 evaluation at LSCE here:[[BR]] 
    7877/home/surface3/maignan/ORCHIDEE/TESTS/test_MICT_V6/modipsl/modeles/ORCHIDEE/modipsl/config/ORCHIDEE_OL/OOL_SEC_STO_V6[[BR]] 
    7978 
     
    8180 
    8281 
    83 * Bugs 
    84  - stomate_Cforcing_name and stomate_forcing_name 
     82=== '''Bugs''' === 
     83* '''stomate_permafrost_carbon / snow_interpol / ! 5. inter- or extrapolate''' (2015/08/24)[[BR]] 
     84{{{ 
     85IF ( dzio(ip,iv) .GT. 0. ) THEN 
     86}}} 
     87should be replaced with: 
     88{{{ 
     89IF ( dzio(ip,iv) .GT. min_stomate ) THEN 
     90}}} 
     91dzio(ip,iv) can be very small and there is a subsequent division per zero and orchidee crashes. 
     92 
     93* '''stomate_Cforcing_name and stomate_forcing_name''' (2015/08/21) 
    8594I've found a problem with the variable Cforcing_name, which is declared both as a global save variable of the stomate module and as a save variable of the stomate_main procedure. It is read in stomate_initialize using a getin_p but indeed the value is not correctly transmitted to the stomate_main procedure. There is also a stomate_Cforcing_name in constantes_var. 
    8695 
     
    91100I don't know where this weird code originates from, I hope it's OK with forcesoil and teststomate, I'll check later. 
    92101 
    93 * To be corrected 
     102=== '''To be corrected''' === 
     103* 2015/08/24 
     104 - LIGHTNING_FILE should not be read if FIRE_DISABLE=y 
     105* 2015/08/21 
    94106 - GRAZING_MAP should not be read if grassland management is not activated. 
    95107 - If OK_EXPLICITSNOW is FALSE then snowdz is not initialized but used anyway (this is probably the case of other variables, to be checked).