Changeset 2633
- Timestamp:
- Mar 1, 2022, 11:56:54 PM (3 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf/phystd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/callkeys_mod.F90
r2595 r2633 14 14 logical,save :: strictboundcorrk 15 15 !$OMP THREADPRIVATE(strictboundcorrk) 16 logical,save :: strictboundH2H2cia 17 !$OMP THREADPRIVATE(strictboundH2H2cia) 16 18 17 19 logical,save :: enertest -
trunk/LMDZ.GENERIC/libf/phystd/inifis_mod.F90
r2595 r2633 266 266 267 267 if (is_master) write(*,*) trim(rname)//& 268 ": prohibit calculations outside H2H2 CIA T grid?" 269 strictboundH2H2cia=.true. ! default value 270 call getin_p("strictboundH2H2cia",strictboundH2H2cia) 271 if (is_master) write(*,*) trim(rname)//& 272 ": strictboundH2H2cia = ",strictboundH2H2cia 273 274 if (is_master) write(*,*) trim(rname)//& 268 275 ": Minimum atmospheric temperature for Planck function integration ?" 269 276 tplanckmin=30.0 ! default value -
trunk/LMDZ.GENERIC/libf/phystd/interpolateH2H2.F90
r2245 r2633 17 17 !================================================================== 18 18 19 use callkeys_mod, only: versH2H2cia 19 use callkeys_mod, only: versH2H2cia, strictboundH2H2cia 20 20 use datafile_mod, only: datadir 21 21 … … 62 62 63 63 if(temp.gt.400)then 64 print*,'Your temperatures are too high for this H2-H2 CIA dataset. If you ' 65 print*,'really want to run simulations with hydrogen at T > 400 K, contact' 66 print*,'Robin Wordsworth [rwordsworth@uchicago.edu].' 67 stop 64 if (strictboundH2H2cia) then 65 print*,'Your temperatures are too high for this H2-H2 CIA dataset. If you ' 66 print*,'really want to run simulations with hydrogen at T > 400 K, contact' 67 print*,'Robin Wordsworth [rwordsworth@uchicago.edu].' 68 stop 69 else 70 print*,'Your temperatures are too high for this H2-H2 CIA dataset' 71 print*,'you have chosen strictboundH2H2cia = ', strictboundH2H2cia 72 print*,'*********************************************************' 73 print*,' we allow model to continue but with temp = 400 ' 74 print*,' ... for H2-H2 CIA dataset ... ' 75 print*,' ... we assume we know what you are doing ... ' 76 print*,'*********************************************************' 77 temp = 400 78 endif 68 79 endif 69 80
Note: See TracChangeset
for help on using the changeset viewer.