Changeset 601 for trunk/LMDZ.GENERIC
- Timestamp:
- Mar 27, 2012, 6:27:23 PM (13 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/deftank/jupiter1d.callphys.def
r591 r601 141 141 ## CO2 options 142 142 ## ~~~~~~~~~~~ 143 # gas is non-ideal CO2 ?144 nonideal = .false.145 143 # call CO2 condensation ? 146 144 co2cond = .false. -
trunk/LMDZ.GENERIC/deftank/jupiter1d.rcm1d.def
r591 r601 48 48 # Simulate global averaged conditions ? 49 49 global1d = .true. 50 # Latitude (deg) [only used if force_cpp= F]50 # Latitude (deg) [only used if global1d = F] 51 51 latitude = 0.0 52 # Solar Zenith angle (deg) [only used if force_cpp= T]52 # Solar Zenith angle (deg) [only used if global1d = T] 53 53 szangle = 45. 54 54 # Force specific heat capacity and molecular mass values -
trunk/LMDZ.GENERIC/libf/phystd/interpolateH2H2.F90
r374 r601 180 180 write(*,*) 'Warning from bilinearH2H2:' 181 181 write(*,*) 'Outside continuum temperature range!' 182 write(*,*) y,y_arr(1),y_arr(nY) 182 183 if(y.lt.y_arr(1))then 183 184 y=y_arr(1)+0.01 … … 186 187 y=y_arr(nY)-0.01 187 188 endif 188 else 189 endif 190 !else 189 191 190 192 ! in the y (temperature) direction 2nd … … 200 202 goto 20 201 203 endif 202 endif204 !endif 203 205 204 206 f11=f2d_arr(a,b) -
trunk/LMDZ.GENERIC/libf/phystd/rcm1d.F
r591 r601 117 117 118 118 saveprofile=.false. 119 saveprofile=.true. 119 120 120 121 c ---------------------------------------- … … 806 807 END DO 807 808 808 ENDDO ! fin de la boucle temporelle809 810 809 c ======================================================== 811 810 c GESTION DES SORTIE 812 811 c ======================================================== 813 814 ! save temperature profile815 812 if(saveprofile)then 816 813 OPEN(12,file='profile.out',form='formatted') 814 write(12,*) tsurf 817 815 DO ilayer=1,nlayermx 818 write(12,*) temp(ilayer), play(ilayer) 816 write(12,*) temp(ilayer) !, play(ilayer) !AS12 only temp so that iprofile=8 can be used 819 817 ENDDO 820 818 CLOSE(12) 821 819 endif 822 820 821 822 ENDDO ! fin de la boucle temporelle 823 823 824 824 c ========================================================
Note: See TracChangeset
for help on using the changeset viewer.