Ignore:
Timestamp:
Mar 27, 2012, 6:27:23 PM (13 years ago)
Author:
aslmd
Message:

GENERIC: minor modifications to jupiter def. plus output profile at each timestep for possible restarts and tests. plus allowed the model to keep on integrations if out of allowed continuum temperature, a lot of warnings are given to the user.

Location:
trunk/LMDZ.GENERIC/libf/phystd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/interpolateH2H2.F90

    r374 r601  
    180180         write(*,*) 'Warning from bilinearH2H2:'
    181181         write(*,*) 'Outside continuum temperature range!'
     182         write(*,*) y,y_arr(1),y_arr(nY)
    182183         if(y.lt.y_arr(1))then
    183184            y=y_arr(1)+0.01
     
    186187            y=y_arr(nY)-0.01
    187188         endif
    188       else
     189      endif
     190      !else
    189191
    190192!     in the y (temperature) direction 2nd
     
    200202            goto 20
    201203         endif
    202       endif
     204      !endif
    203205     
    204206      f11=f2d_arr(a,b)
  • trunk/LMDZ.GENERIC/libf/phystd/rcm1d.F

    r591 r601  
    117117
    118118      saveprofile=.false.
     119      saveprofile=.true.
    119120
    120121c ----------------------------------------
     
    806807        END DO
    807808
    808       ENDDO   ! fin de la boucle temporelle
    809 
    810809c    ========================================================
    811810c    GESTION DES SORTIE
    812811c    ========================================================
    813 
    814 ! save temperature profile
    815812      if(saveprofile)then
    816813         OPEN(12,file='profile.out',form='formatted')
     814         write(12,*) tsurf
    817815         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
    819817         ENDDO
    820818         CLOSE(12)
    821819      endif
    822820
     821
     822      ENDDO   ! fin de la boucle temporelle
    823823
    824824c    ========================================================
Note: See TracChangeset for help on using the changeset viewer.