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.TITAN/libf/phytitan/inifis_mod.F90

    r2241 r2245  
    288288     write(*,*) " continuum = ",continuum
    289289 
     290     write(*,*) "version for H2H2 CIA file ?"
     291     versH2H2cia=2011 ! default value (should be 2018 but retrocompatibility first)
     292     call getin_p("versH2H2cia",versH2H2cia)
     293     write(*,*) " versH2H2cia = ",versH2H2cia
     294     ! Sanity check
     295     if (versH2H2cia.ne.2011 .and. versH2H2cia.ne.2018) then
     296        print*,'Error: Choose a correct value (2011 or 2018) for versH2H2cia !'
     297        call abort
     298     endif
     299
    290300     write(*,*) "call turbulent vertical diffusion ?"
    291301     calldifv=.true. ! default value
Note: See TracChangeset for help on using the changeset viewer.