Changeset 1783 for trunk


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

add new option in newstart

Location:
trunk/LMDZ.GENERIC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/README

    r1764 r1783  
    13541354 - Added a tmpk variable
    13551355 - Save ~ 50% time on the RT, ~30% on the whole code on the tested simulations
     1356
     1357== 07/06/2017 == MT
     1358Add qs=x option to newstart.F (chose a specific value to a surface tracer)
  • 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.