Changeset 601 for trunk/LMDZ.GENERIC/libf/phystd
- Timestamp:
- Mar 27, 2012, 6:27:23 PM (13 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf/phystd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.