Ignore:
Timestamp:
Nov 17, 2023, 1:15:00 PM (12 months ago)
Author:
jbclement
Message:

Mars PCM:
Correction of a bug related to r3126: 'choice_ads' did not have a default value which made the model crash. 'choice_ads = 0' is the default value (no adsorption).
JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r3126 r3128  
    10101010
    10111011! Adsorption
    1012          adsorption_soil = .false.
     1012         adsorption_soil = .false. ! default value
    10131013         call getin_p("adsorption_soil",adsorption_soil)
    10141014         if (adsorption_soil .and. (.not. water)) then
     
    10181018         endif 
    10191019
    1020          if(adsorption_soil) choice_ads = 1
     1020         choice_ads = 0 ! default value (no adsorption)
     1021         if (adsorption_soil) choice_ads = 1
    10211022         call getin_p("choice_ads",choice_ads)
    10221023           
Note: See TracChangeset for help on using the changeset viewer.