Changeset 20 for trunk/src/com_mod.f90
- Timestamp:
- Dec 23, 2013, 6:23:38 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com_mod.f90
r4 r20 7 7 ! June 1996 * 8 8 ! * 9 ! Last update: 9 August 2000*9 ! Last update:15 August 2013 IP * 10 10 ! * 11 11 !******************************************************************************* … … 25 25 character :: path(numpath+2*maxnests)*120 26 26 integer :: length(numpath+2*maxnests) 27 27 character(len=256) :: pathfile, flexversion, arg1, arg2 28 28 29 ! path path names needed for trajectory model 29 30 ! length length of path names needed for trajectory model 30 31 ! pathfile file where pathnames are stored 32 ! flexversion version of flexpart 33 ! arg input arguments from launch at command line 31 34 32 35 !******************************************************** … … 65 68 integer :: ifine,iout,ipout,ipin,iflux,mdomainfill 66 69 integer :: mquasilag,nested_output,ind_source,ind_receptor 67 integer :: ind_rel,ind_samp,ioutputforeachrelease,linit_cond 70 integer :: ind_rel,ind_samp,ioutputforeachrelease,linit_cond,surf_only 68 71 logical :: turbswitch 69 72 … … 91 94 ! mquasilag 0: normal run 92 95 ! 1: Particle position output is produced in a condensed format and particles are numbered 96 ! surf_only switch output in grid_time files for surface only or full vertical resolution 97 ! 0=no (full vertical resolution), 1=yes (surface only) 93 98 ! nested_output: 0 no, 1 yes 94 99 ! turbswitch determines how the Markov chain is formulated … … 139 144 real :: decay(maxspec) 140 145 real :: weta(maxspec),wetb(maxspec) 146 ! NIK: 31.01.2013- parameters for in-cloud scavening 147 real :: weta_in(maxspec), wetb_in(maxspec), wetc_in(maxspec), wetd_in(maxspec) 141 148 real :: reldiff(maxspec),henry(maxspec),f0(maxspec) 142 149 real :: density(maxspec),dquer(maxspec),dsigma(maxspec) … … 172 179 173 180 ! WET DEPOSITION 174 ! weta, wetb parameters for determining wet scavenging coefficients 181 ! weta, wetb parameters for determining below-cloud wet scavenging coefficients 182 ! weta_in, wetb_in parameters for determining in-cloud wet scavenging coefficients 183 ! wetc_in, wetd_in parameters for determining in-cloud wet scavenging coefficients 175 184 176 185 ! GAS DEPOSITION … … 331 340 real :: qvh(0:nxmax-1,0:nymax-1,nuvzmax,2) 332 341 real :: pplev(0:nxmax-1,0:nymax-1,nuvzmax,2) 342 !scavenging NIK, PS 333 343 integer(kind=1) :: clouds(0:nxmax-1,0:nymax-1,nzmax,2) 334 344 integer :: cloudsh(0:nxmax-1,0:nymax-1,2) 345 integer icloudbot(0:nxmax-1,0:nymax-1,2) 346 integer icloudthck(0:nxmax-1,0:nymax-1,2) 347 335 348 336 349 ! uu,vv,ww [m/2] wind components in x,y and z direction … … 346 359 ! rainout conv/lsp dominated 2/3 347 360 ! washout conv/lsp dominated 4/5 361 ! PS 2013 362 !c icloudbot (m) cloud bottom height 363 !c icloudthck (m) cloud thickness 364 348 365 ! pplev for the GFS version 349 366 … … 662 679 663 680 664 665 681 !******************** 666 682 ! Random number field … … 671 687 ! rannumb field of normally distributed random numbers 672 688 689 !******************** 690 ! Verbosity, testing flags 691 !******************** 692 integer :: verbosity=0 693 integer :: info_flag=0 694 INTEGER :: count_clock, count_clock0, count_rate, count_max 695 673 696 674 697 end module com_mod
Note: See TracChangeset
for help on using the changeset viewer.