Ignore:
Timestamp:
Feb 24, 2020, 6:55:50 PM (5 years ago)
Author:
jvatant
Message:

+ Add a 'versH2H2cia' int key in callphys that allows two values (2011 or 2018) to

deal with updated HITRAN file (for interpolateH2H2.F90) from 2018 that includes the
H2H2 dimer from Fletcher et al. 2018, useful for giant planets.
Retrocompatibility is ok, default value to 2011.

--JVO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90

    r2138 r2245  
    250250     write(*,*) " H2Ocont_simple = ",H2Ocont_simple
    251251 
     252     write(*,*) "version for H2H2 CIA file ?"
     253     versH2H2cia=2011 ! default value (should be 2018 but retrocompatibility first)
     254     call getin_p("versH2H2cia",versH2H2cia)
     255     write(*,*) " versH2H2cia = ",versH2H2cia
     256     ! Sanity check
     257     if (versH2H2cia.ne.2011 .and. versH2H2cia.ne.2018) then
     258        print*,'Error: Choose a correct value (2011 or 2018) for versH2H2cia !'
     259        call abort
     260     endif
     261
    252262     write(*,*) "call turbulent vertical diffusion ?"
    253263     calldifv=.true. ! default value
Note: See TracChangeset for help on using the changeset viewer.