Ignore:
Timestamp:
Sep 14, 2017, 8:31:56 PM (7 years ago)
Author:
mturbet
Message:

add new option in newstart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F

    r1669 r1783  
    588588      write(*,*) 'q=0 : ALL tracer =zero'
    589589      write(*,*) 'q=x : give a specific uniform value to one tracer'
     590      write(*,*) 'qs=x : give a uniform value to a surface tracer'
    590591      write(*,*) 'q=profile    : specify a profile for a tracer'
    591592!      write(*,*) 'ini_q : tracers initialisation for chemistry, water an
     
    951952               ENDDO
    952953             ENDDO
     954             write(*,*) 'SURFACE value of tracer ',trim(tname(iq)),
     955     &                   ' ? (kg/m2)'
     956             read(*,*) val
     957             DO ig=1,ngridmx
     958                 qsurf(ig,iq)=val
     959             ENDDO
     960             
     961c       qs=x : initialise surface tracer manually
     962c       --------------------------------
     963        else if (trim(modif).eq.'qs=x') then
     964             write(*,*) 'Which tracer do you want to modify ?'
     965             do iq=1,nqtot
     966               write(*,*)iq,' : ',trim(tname(iq))
     967             enddo
     968             write(*,*) '(choose between 1 and ',nqtot,')'
     969             read(*,*) iq
    953970             write(*,*) 'SURFACE value of tracer ',trim(tname(iq)),
    954971     &                   ' ? (kg/m2)'
Note: See TracChangeset for help on using the changeset viewer.