Changes in src/readcommand.f90 [20963b1:2eefa58] in flexpart.git


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/readcommand.f90

    r20963b1 r2eefa58  
    5050  ! ipin                 1 continue simulation with dumped particle data, 0 no *
    5151  ! ipout                0 no particle dump, 1 every output time, 3 only at end*
     52  ! ipoutfac             increase particle dump interval by factor (default 1) *
    5253  ! itsplit [s]          time constant for particle splitting                  *
    5354  ! loutaver [s]         concentration output is an average over loutaver      *
     
    9798  iout, &
    9899  ipout, &
     100  ipoutfac, &
    99101  lsubgrid, &
    100102  lconvection, &
     
    112114  surf_only, &
    113115  cblflag, &
     116  linversionout, &
    114117  ohfields_path
    115118
     
    129132  iout=3
    130133  ipout=0
     134  ipoutfac=1
    131135  lsubgrid=1
    132136  lconvection=1
     
    144148  surf_only=0
    145149  cblflag=0 ! if using old-style COMMAND file, set to 1 here to use mc cbl routine
     150  linversionout=0
    146151  ohfields_path="../../flexin/"
    147152
     
    411416  !**********************************************************************
    412417
    413   if ((iout.lt.1).or.(iout.gt.6)) then
     418  if ((iout.lt.1).or.(iout.gt.5)) then
    414419    write(*,*) ' #### FLEXPART MODEL ERROR! FILE COMMAND:     #### '
    415420    write(*,*) ' #### IOUT MUST BE 1, 2, 3, 4 OR 5 FOR        #### '
     
    471476      write(*,*) '#### FOR DOMAIN FILLING RUNS OUTPUT FOR      ####'
    472477      write(*,*) '#### EACH RELEASE IS FORBIDDEN !             ####'
     478      stop
     479  endif
     480
     481  ! Inversion output format only for backward runs
     482  !*****************************************************************************
     483 
     484  if ((linversionout.eq.1).and.(ldirect.eq.1)) then
     485      write(*,*) '#### FLEXPART MODEL ERROR! FILE COMMAND:     ####'
     486      write(*,*) '#### INVERSION OUTPUT FORMAT ONLY FOR        ####'
     487      write(*,*) '#### BACKWARD RUNS                           ####'
    473488      stop
    474489  endif
     
    507522  !****************************************************************
    508523
    509   if ((ipout.ne.0).and.(ipout.ne.1).and.(ipout.ne.2)) then
     524  if ((ipout.ne.0).and.(ipout.ne.1).and.(ipout.ne.2).and.(ipout.ne.3)) then
    510525    write(*,*) ' #### FLEXPART MODEL ERROR! FILE COMMAND:     #### '
    511     write(*,*) ' #### IPOUT MUST BE 1, 2 OR 3!                #### '
     526    write(*,*) ' #### IPOUT MUST BE 0, 1, 2 OR 3!             #### '
    512527    stop
    513528  endif
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG