Changeset 2870 for trunk/LMDZ.GENERIC/libf/phystd/interpolateHeCH4.F90
- Timestamp:
- Jan 16, 2023, 4:47:10 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/interpolateHeCH4.F90
r2662 r2870 55 55 56 56 character*20 bleh 57 double precision blah, Ttemp 57 double precision blah, Ttemp, ztemp 58 58 integer nres 59 59 integer ind 60 60 61 if(temp.gt.350)then 61 ztemp=temp 62 63 if(ztemp.gt.350)then 62 64 if (strictboundcia) then 63 65 if (is_master) then … … 67 69 stop 68 70 else 69 if (is_master) then70 print*,'Your temperatures are too high for this He-CH4 CIA dataset'71 print*,'you have chosen strictboundcia = ', strictboundcia72 print*,'*********************************************************'73 print*,' we allow model to continue but with temp = 350 '74 print*,' ... for He-CH4 CIA dataset ... '75 print*,' ... we assume we know what you are doing ... '76 print*,'*********************************************************'77 endif78 temp = 35071 !if (is_master) then 72 ! print*,'Your temperatures are too high for this He-CH4 CIA dataset' 73 ! print*,'you have chosen strictboundcia = ', strictboundcia 74 ! print*,'*********************************************************' 75 ! print*,' we allow model to continue but with temp = 350 ' 76 ! print*,' ... for He-CH4 CIA dataset ... ' 77 ! print*,' ... we assume we know what you are doing ... ' 78 ! print*,'*********************************************************' 79 !endif 80 ztemp = 350 79 81 endif 80 elseif( temp.lt.40)then82 elseif(ztemp.lt.40)then 81 83 if (strictboundcia) then 82 84 if (is_master) then … … 86 88 stop 87 89 else 88 if (is_master) then89 print*,'Your temperatures are too low for this He-CH4 CIA dataset'90 print*,'you have chosen strictboundcia = ', strictboundcia91 print*,'*********************************************************'92 print*,' we allow model to continue but with temp = 40 '93 print*,' ... for He-CH4 CIA dataset ... '94 print*,' ... we assume we know what you are doing ... '95 print*,'*********************************************************'96 endif97 temp = 4090 !if (is_master) then 91 ! print*,'Your temperatures are too low for this He-CH4 CIA dataset' 92 ! print*,'you have chosen strictboundcia = ', strictboundcia 93 ! print*,'*********************************************************' 94 ! print*,' we allow model to continue but with temp = 40 ' 95 ! print*,' ... for He-CH4 CIA dataset ... ' 96 ! print*,' ... we assume we know what you are doing ... ' 97 ! print*,'*********************************************************' 98 !endif 99 ztemp = 40 98 100 endif 99 101 endif … … 154 156 endif 155 157 156 call bilinearbig(nS,nT,wn_arr,temp_arr,abs_arr,wn, temp,abcoef,ind)158 call bilinearbig(nS,nT,wn_arr,temp_arr,abs_arr,wn,ztemp,abcoef,ind) 157 159 158 160 ! print*,'the absorption is ',abcoef,' cm^5 molecule^-2'
Note: See TracChangeset
for help on using the changeset viewer.