Changes in src/readcommand.f90 [4c64400:8ee24a5] in flexpart.git


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/readcommand.f90

    r4c64400 r8ee24a5  
    170170    if (index(line,'LDIRECT') .eq. 0) then
    171171      old = .false.
    172       if (lroot) write(*,*) 'COMMAND in old short format, &
    173            &please update to namelist format'
     172      write(*,*) 'COMMAND in old short format, please update to namelist format'
    174173    else
    175174      old = .true.
    176       if (lroot) write(*,*) 'COMMAND in old long format, &
    177            &please update to namelist format'
     175      write(*,*) 'COMMAND in old long format, please update to namelist format'
    178176    endif
    179177    rewind(unitcommand)
     
    298296  !Af          1 = mass units
    299297  !Af          2 = mass mixing ratio units
     298  !            3 = wet deposition in outputfield
     299  !            4 = dry deposition in outputfield
    300300
    301301  if ( ldirect .eq. 1 ) then  ! FWD-Run
     
    320320     endif
    321321  !Af set release-switch
    322      if (ind_receptor .eq. 1) then !mass
     322     WETBKDEP=.false.
     323     DRYBKDEP=.false.
     324     select case (ind_receptor)
     325     case (1)  !  1 .. concentration at receptor
    323326        ind_rel = 1
    324      else ! mass mix
     327     case (2)  !  2 .. mixing ratio at receptor
    325328        ind_rel = 0
    326      endif
     329     case (3)  ! 3 .. wet deposition in outputfield
     330        ind_rel = 3
     331         write(*,*) ' #### FLEXPART WET DEPOSITION BACKWARD MODE    #### '
     332         write(*,*) ' #### Releaseheight is forced to 0 - 20km      #### '
     333         write(*,*) ' #### Release is performed above ground lev    #### '
     334         WETBKDEP=.true.
     335         allocate(xscav_frac1(maxpart,maxspec))
     336     case (4)  ! 4 .. dry deposition in outputfield
     337         ind_rel = 4
     338         write(*,*) ' #### FLEXPART DRY DEPOSITION BACKWARD MODE    #### '
     339         write(*,*) ' #### Releaseheight is forced to 0 - 2*href    #### '
     340         write(*,*) ' #### Release is performed above ground lev    #### '
     341         DRYBKDEP=.true.
     342         allocate(xscav_frac1(maxpart,maxspec))
     343     end select
    327344  endif
    328345
     
    386403  !**********************************************************************
    387404
    388   if ((iout.lt.1).or.(iout.gt.5)) then
     405  if ((iout.lt.1).or.(iout.gt.6)) then
    389406    write(*,*) ' #### FLEXPART MODEL ERROR! FILE COMMAND:     #### '
    390     write(*,*) ' #### IOUT MUST BE 1, 2, 3, 4, OR 5 FOR       #### '
     407    write(*,*) ' #### IOUT MUST BE 1, 2, 3, 4 OR 5 FOR        #### '
    391408    write(*,*) ' #### STANDARD FLEXPART OUTPUT OR  9 - 13     #### '
    392409    write(*,*) ' #### FOR NETCDF OUTPUT                       #### '
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG