Changeset 6985a98 in flexpart.git for src/readcommand.f90


Ignore:
Timestamp:
May 8, 2017, 5:28:32 PM (7 years ago)
Author:
Sabine <sabine.eckhardt@…>
Branches:
master, 10.4.1_pesei, GFS_025, bugfixes+enhancements, dev, release-10, release-10.4.1, scaling-bug, univie
Children:
2bec33e
Parents:
d9f0585 (diff), d1a8707 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

compiles after merge scavenging into test dev

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/readcommand.f90

    r4c64400 r6985a98  
    298298  !Af          1 = mass units
    299299  !Af          2 = mass mixing ratio units
     300  !            3 = wet deposition in outputfield
     301  !            4 = dry deposition in outputfield
    300302
    301303  if ( ldirect .eq. 1 ) then  ! FWD-Run
     
    320322     endif
    321323  !Af set release-switch
    322      if (ind_receptor .eq. 1) then !mass
     324     WETBKDEP=.false.
     325     DRYBKDEP=.false.
     326     select case (ind_receptor)
     327     case (1)  !  1 .. concentration at receptor
    323328        ind_rel = 1
    324      else ! mass mix
     329     case (2)  !  2 .. mixing ratio at receptor
    325330        ind_rel = 0
    326      endif
     331     case (3)  ! 3 .. wet deposition in outputfield
     332        ind_rel = 3
     333         write(*,*) ' #### FLEXPART WET DEPOSITION BACKWARD MODE    #### '
     334         write(*,*) ' #### Releaseheight is forced to 0 - 20km      #### '
     335         write(*,*) ' #### Release is performed above ground lev    #### '
     336         WETBKDEP=.true.
     337         allocate(xscav_frac1(maxpart,maxspec))
     338     case (4)  ! 4 .. dry deposition in outputfield
     339         ind_rel = 4
     340         write(*,*) ' #### FLEXPART DRY DEPOSITION BACKWARD MODE    #### '
     341         write(*,*) ' #### Releaseheight is forced to 0 - 2*href    #### '
     342         write(*,*) ' #### Release is performed above ground lev    #### '
     343         DRYBKDEP=.true.
     344         allocate(xscav_frac1(maxpart,maxspec))
     345     end select
    327346  endif
    328347
     
    386405  !**********************************************************************
    387406
    388   if ((iout.lt.1).or.(iout.gt.5)) then
     407  if ((iout.lt.1).or.(iout.gt.6)) then
    389408    write(*,*) ' #### FLEXPART MODEL ERROR! FILE COMMAND:     #### '
    390     write(*,*) ' #### IOUT MUST BE 1, 2, 3, 4, OR 5 FOR       #### '
     409    write(*,*) ' #### IOUT MUST BE 1, 2, 3, 4 OR 5 FOR        #### '
    391410    write(*,*) ' #### STANDARD FLEXPART OUTPUT OR  9 - 13     #### '
    392411    write(*,*) ' #### FOR NETCDF OUTPUT                       #### '
Note: See TracChangeset for help on using the changeset viewer.
hosted by ZAMG