source: flexpart.git/src/readspecies.f90 @ 05cf28d

10.4.1_peseiGFS_025bugfixes+enhancementsdevrelease-10release-10.4.1scaling-bugunivie
Last change on this file since 05cf28d was 05cf28d, checked in by Espen Sollum ATMOS <eso@…>, 8 years ago

Updated checks and warning messages for wet deposition parameters given in SPECIES files

  • Property mode set to 100644
File size: 15.6 KB
Line 
1!**********************************************************************
2! Copyright 1998,1999,2000,2001,2002,2005,2007,2008,2009,2010         *
3! Andreas Stohl, Petra Seibert, A. Frank, Gerhard Wotawa,             *
4! Caroline Forster, Sabine Eckhardt, John Burkhart, Harald Sodemann   *
5!                                                                     *
6! This file is part of FLEXPART.                                      *
7!                                                                     *
8! FLEXPART is free software: you can redistribute it and/or modify    *
9! it under the terms of the GNU General Public License as published by*
10! the Free Software Foundation, either version 3 of the License, or   *
11! (at your option) any later version.                                 *
12!                                                                     *
13! FLEXPART is distributed in the hope that it will be useful,         *
14! but WITHOUT ANY WARRANTY; without even the implied warranty of      *
15! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       *
16! GNU General Public License for more details.                        *
17!                                                                     *
18! You should have received a copy of the GNU General Public License   *
19! along with FLEXPART.  If not, see <http://www.gnu.org/licenses/>.   *
20!**********************************************************************
21
22subroutine readspecies(id_spec,pos_spec)
23
24  !*****************************************************************************
25  !                                                                            *
26  !     This routine reads names and physical constants of chemical species/   *
27  !     radionuclides given in the parameter pos_spec                          *
28  !                                                                            *
29  !   Author: A. Stohl                                                         *
30  !                                                                            *
31  !   11 July 1996                                                             *
32  !                                                                            *
33  !   Changes:                                                                 *
34  !   N. Kristiansen, 31.01.2013: Including parameters for in-cloud scavenging *
35  !                                                                            *
36  !   HSO, 13 August 2013
37  !   added optional namelist input
38  !                                                                            *
39  !*****************************************************************************
40  !                                                                            *
41  ! Variables:                                                                 *
42  ! decaytime(maxtable)   half time for radiological decay                     *
43  ! specname(maxtable)    names of chemical species, radionuclides             *
44  ! weta_gas, wetb_gas    Parameters for below-cloud scavenging of gasses      *
45  ! crain_aero,csnow_aero Parameters for below-cloud scavenging of aerosols    *
46  ! ccn_aero,in_aero      Parameters for in-cloud scavenging of aerosols       *
47  ! ohcconst              OH reaction rate constant C                          *
48  ! ohdconst              OH reaction rate constant D                          *
49  ! ohnconst              OH reaction rate constant n                          *
50  ! id_spec               SPECIES number as referenced in RELEASE file         *
51  ! id_pos                position where SPECIES data shall be stored          *
52  !                                                                            *
53  ! Constants:                                                                 *
54  !                                                                            *
55  !*****************************************************************************
56
57  use par_mod
58  use com_mod
59
60  implicit none
61
62  integer :: i, pos_spec,j
63  integer :: idow,ihour,id_spec
64  character(len=3) :: aspecnumb
65  logical :: spec_found
66
67  character(len=16) :: pspecies
68  real :: pdecay, pweta_gas, pwetb_gas, preldiff, phenry, pf0, pdensity, pdquer
69  real :: pdsigma, pdryvel, pweightmolar, pohcconst, pohdconst, pohnconst, pspec_ass, pkao
70  real :: pcrain_aero, pcsnow_aero, pccn_aero, pin_aero
71  integer :: readerror
72
73! declare namelist
74  namelist /species_params/ &
75       pspecies, pdecay, pweta_gas, pwetb_gas, &
76       pcrain_aero, pcsnow_aero, pccn_aero, pin_aero, &
77       preldiff, phenry, pf0, pdensity, pdquer, &
78       pdsigma, pdryvel, pweightmolar, pohcconst, pohdconst, pohnconst, pspec_ass, pkao
79
80  pspecies="" ! read failure indicator value
81  pdecay=-999.9
82  pweta_gas=-9.9E-09
83  pwetb_gas=0.0
84  pcrain_aero=-9.9E-09
85  pcsnow_aero=-9.9E-09
86  pccn_aero=-9.9E-09
87  pin_aero=-9.9E-09
88  preldiff=-9.9
89  phenry=0.0
90  pf0=0.0
91  pdensity=-9.9E09
92  pdquer=0.0
93  pdsigma=0.0
94  pdryvel=-9.99
95  pohcconst=-9.99
96  pohdconst=-9.9E-09
97  pohnconst=2.0
98  pspec_ass=-9
99  pkao=-99.99
100  pweightmolar=-999.9
101
102! Open the SPECIES file and read species names and properties
103!************************************************************
104  specnum(pos_spec)=id_spec
105  write(aspecnumb,'(i3.3)') specnum(pos_spec)
106  open(unitspecies,file=path(1)(1:length(1))//'SPECIES/SPECIES_'//aspecnumb,status='old',form='formatted',err=998)
107!write(*,*) 'reading SPECIES',specnum(pos_spec)
108
109  ASSSPEC=.FALSE.
110
111! try namelist input
112  read(unitspecies,species_params,iostat=readerror)
113  close(unitspecies)
114
115  if ((len(trim(pspecies)).eq.0).or.(readerror.ne.0)) then ! no namelist found
116    if (lroot) write(*,*) "SPECIES file not in NAMELIST format, attempting to &
117         &read as fixed format"
118
119    readerror=1
120
121    open(unitspecies,file=path(1)(1:length(1))//'SPECIES/SPECIES_'//aspecnumb,status='old',err=998)
122
123    do i=1,6
124      read(unitspecies,*)
125    end do
126
127    read(unitspecies,'(a10)',end=22) species(pos_spec)
128!  write(*,*) species(pos_spec)
129    read(unitspecies,'(f18.1)',end=22) decay(pos_spec)
130!  write(*,*) decay(pos_spec)
131    read(unitspecies,'(e18.1)',end=22) weta_gas(pos_spec)
132!  write(*,*) weta_gas(pos_spec)
133    read(unitspecies,'(f18.2)',end=22) wetb_gas(pos_spec)
134!  write(*,*) wetb_gas(pos_spec)
135    read(unitspecies,'(e18.1)',end=22) crain_aero(pos_spec)
136!  write(*,*) crain_aero(pos_spec)
137    read(unitspecies,'(f18.2)',end=22) csnow_aero(pos_spec)
138!  write(*,*) csnow_aero(pos_spec)
139!*** NIK 31.01.2013: including in-cloud scavening parameters
140    read(unitspecies,'(e18.1)',end=22) ccn_aero(pos_spec)
141!  write(*,*) ccn_aero(pos_spec)
142    read(unitspecies,'(f18.2)',end=22) in_aero(pos_spec)
143!  write(*,*) in_aero(pos_spec)
144    read(unitspecies,'(f18.1)',end=22) reldiff(pos_spec)
145!  write(*,*) reldiff(pos_spec)
146    read(unitspecies,'(e18.1)',end=22) henry(pos_spec)
147!  write(*,*) henry(pos_spec)
148    read(unitspecies,'(f18.1)',end=22) f0(pos_spec)
149!  write(*,*) f0(pos_spec)
150    read(unitspecies,'(e18.1)',end=22) density(pos_spec)
151!  write(*,*) density(pos_spec)
152    read(unitspecies,'(e18.1)',end=22) dquer(pos_spec)
153!  write(*,*) 'dquer(pos_spec):', dquer(pos_spec)
154    read(unitspecies,'(e18.1)',end=22) dsigma(pos_spec)
155!  write(*,*) dsigma(pos_spec)
156    read(unitspecies,'(f18.2)',end=22) dryvel(pos_spec)
157!  write(*,*) dryvel(pos_spec)
158    read(unitspecies,'(f18.2)',end=22) weightmolar(pos_spec)
159!  write(*,*) weightmolar(pos_spec)
160    read(unitspecies,'(e18.2)',end=22) ohcconst(pos_spec)
161!  write(*,*) ohcconst(pos_spec)
162    read(unitspecies,'(f8.2)',end=22) ohdconst(pos_spec)
163!  write(*,*) ohdconst(pos_spec)
164    read(unitspecies,'(f8.2)',end=22) ohnconst(pos_spec)
165!  write(*,*) ohnconst(pos_spec)
166    read(unitspecies,'(i18)',end=22) spec_ass(pos_spec)
167!  write(*,*) spec_ass(pos_spec)
168    read(unitspecies,'(f18.2)',end=22) kao(pos_spec)
169!       write(*,*) kao(pos_spec)
170
171    pspecies=species(pos_spec)
172    pdecay=decay(pos_spec)
173    pweta_gas=weta_gas(pos_spec)
174    pwetb_gas=wetb_gas(pos_spec)
175    pcrain_aero=crain_aero(pos_spec)
176    pcsnow_aero=csnow_aero(pos_spec)
177    pccn_aero=ccn_aero(pos_spec)
178    pin_aero=in_aero(pos_spec)
179    preldiff=reldiff(pos_spec)
180    phenry=henry(pos_spec)
181    pf0=f0(pos_spec)
182    pdensity=density(pos_spec)
183    pdquer=dquer(pos_spec)
184    pdsigma=dsigma(pos_spec)
185    pdryvel=dryvel(pos_spec)
186    pweightmolar=weightmolar(pos_spec)
187    pohcconst=ohcconst(pos_spec)
188    pohdconst=ohdconst(pos_spec)
189    pohnconst=ohnconst(pos_spec)
190    pspec_ass=spec_ass(pos_spec)
191    pkao=kao(pos_spec)
192
193  else
194
195    species(pos_spec)=pspecies
196    decay(pos_spec)=pdecay
197    weta_gas(pos_spec)=pweta_gas
198    wetb_gas(pos_spec)=pwetb_gas
199    crain_aero=pcrain_aero
200    csnow_aero=pcsnow_aero
201    ccn_aero(pos_spec)=pccn_aero
202    in_aero(pos_spec)=pin_aero
203    reldiff(pos_spec)=preldiff
204    henry(pos_spec)=phenry
205    f0(pos_spec)=pf0
206    density(pos_spec)=pdensity
207    dquer(pos_spec)=pdquer
208    dsigma(pos_spec)=pdsigma
209    dryvel(pos_spec)=pdryvel
210    weightmolar(pos_spec)=pweightmolar
211    ohcconst(pos_spec)=pohcconst
212    ohdconst(pos_spec)=pohdconst
213    ohnconst(pos_spec)=pohnconst
214    spec_ass(pos_spec)=pspec_ass
215    kao(pos_spec)=pkao
216
217  endif
218
219  i=pos_spec
220
221!NIK 16.02.2015
222! Check scavenging parameters given in SPECIES file
223
224  if (lroot) then
225! Particles
226!**********
227    if (dquer(pos_spec).gt.0) then
228      if (ccn_aero(pos_spec) .gt. 0) then
229        write(*,'(a,f5.2)') '  Particle CCN  efficiency (CCNeff):', ccn_aero(pos_spec)
230      else
231        write(*,'(a)')      '  Particle CCN  efficiency (CCNeff):   OFF'
232      endif
233      if (in_aero(pos_spec) .gt. 0) then
234        write(*,'(a,f5.2)') '  Particle  IN  efficiency (INeff) :', in_aero(pos_spec)
235      else
236        write(*,'(a)')      '  Particle  IN  efficiency (INeff) :   OFF'
237      endif
238      if (crain_aero(pos_spec) .gt. 0) then
239        write(*,'(a,f5.2)') '  Particle Rain efficiency (Crain) :', crain_aero(pos_spec)
240      else
241        write(*,'(a)')      '  Particle Rain efficiency (Crain) :   OFF'
242      endif
243      if (csnow_aero(pos_spec) .gt. 0) then
244        write(*,'(a,f5.2)') '  Particle Snow efficiency (Csnow) :', csnow_aero(pos_spec)
245      else
246        write(*,'(a)')      '  Particle Snow efficiency (Csnow) :   OFF'
247      end if
248      if (density(pos_spec) .gt. 0) then
249        write(*,'(a)') '  Dry deposition is turned         :   ON'
250      else
251        write(*,'(a)') '  Dry deposition is (density<0)    :   OFF'
252      end if
253      if (crain_aero(pos_spec).gt.10.0 .or. csnow_aero(pos_spec).gt.10.0 .or. &
254           &ccn_aero(pos_spec).gt.1.0 .or. in_aero(pos_spec).gt.1.0) then
255        write(*,*) '*******************************************'
256        write(*,*) ' WARNING: Particle Scavenging parameter likely out of range '
257        write(*,*) '       Likely   range for Crain    0.0-10'
258        write(*,*) '       Likely   range for Csnow    0.0-10'
259        write(*,*) '       Physical range for CCNeff   0.0-1'
260        write(*,*) '       Physical range for INeff    0.0-1'
261        write(*,*) '*******************************************'
262      end if
263    else
264! Gas
265!****
266      if (weta_gas(pos_spec) .gt. 0 .and. wetb_gas(pos_spec).gt.0) then
267        write(*,*)          '  Wet removal for gases      is turned: ON'
268        write(*,*)          '  Gas below-cloud scavenging parameter A  ', &
269             &weta_gas(pos_spec)
270        write(*,'(a,f5.2)') '  Gas below-cloud scavenging parameter B  ', &
271             &wetb_gas(pos_spec)
272      else
273        write(*,*)          '  Wet removal for gases      is turned: OFF '
274      end if
275      if (reldiff(i).gt.0.) then
276        write(*,*)          '  Dry deposition for gases   is turned: ON '
277      else
278        write(*,*)          '  Dry deposition for gases   is turned: OFF '
279      end if
280      if (weta_gas(pos_spec).gt.0.) then !if wet deposition is turned on
281        if (weta_gas(pos_spec).gt.1E-04 .or. weta_gas(pos_spec).lt.1E-09 .or. &
282             &wetb_gas(pos_spec).gt.0.8 .or. wetb_gas(pos_spec).lt.0.4) then
283          write(*,*) '*******************************************'
284          write(*,*) ' WARNING: Gas below-cloud scavengig is out of likely range'
285          write(*,*) '          Likely range for A is 1E-04 to 1E-08'
286          write(*,*) '          Likely range for B is 0.60  to 0.80 '
287          write(*,*) '*******************************************'
288        end if
289      endif
290
291      if (((weta_gas(pos_spec).gt.0).or.(wetb_gas(pos_spec).gt.0)).and.&
292           &(henry(pos_spec).le.0)) then
293        if (dquer(pos_spec).le.0) goto 996 ! no particle, no henry set
294      endif
295    end if
296  end if
297
298  if (spec_ass(pos_spec).gt.0) then
299    spec_found=.FALSE.
300    do j=1,pos_spec-1
301      if (spec_ass(pos_spec).eq.specnum(j)) then
302        spec_ass(pos_spec)=j
303        spec_found=.TRUE.
304        ASSSPEC=.TRUE.
305      endif
306    end do
307    if (spec_found.eqv..false.) then
308      goto 997
309    endif
310  endif
311
312  if (dsigma(i).eq.1.) dsigma(i)=1.0001   ! avoid floating exception
313  if (dsigma(i).eq.0.) dsigma(i)=1.0001   ! avoid floating exception
314
315  if ((reldiff(i).gt.0.).and.(density(i).gt.0.)) then
316    write(*,*) '#### FLEXPART MODEL ERROR! FILE "SPECIES"    ####'
317    write(*,*) '#### IS CORRUPT. SPECIES CANNOT BE BOTH      ####'
318    write(*,*) '#### PARTICLE AND GAS.                       ####'
319    write(*,*) '#### SPECIES NUMBER',aspecnumb
320    stop
321  endif
32220 continue
323
324
325! Read in daily and day-of-week variation of emissions, if available
326!*******************************************************************
327! HSO: This is not yet implemented as namelist parameters
328
329  do j=1,24           ! initialize everything to no variation
330    area_hour(i,j)=1.
331    point_hour(i,j)=1.
332  end do
333  do j=1,7
334    area_dow(i,j)=1.
335    point_dow(i,j)=1.
336  end do
337
338  if (readerror.ne.0) then ! text format input
339
340    read(unitspecies,*,end=22)
341    do j=1,24     ! 24 hours, starting with 0-1 local time
342      read(unitspecies,*) ihour,area_hour(i,j),point_hour(i,j)
343    end do
344    read(unitspecies,*)
345    do j=1,7      ! 7 days of the week, starting with Monday
346      read(unitspecies,*) idow,area_dow(i,j),point_dow(i,j)
347    end do
348
349  endif
350
35122 close(unitspecies)
352
353! namelist output if requested
354  if (nmlout.and.lroot) then
355    open(unitspecies,file=path(2)(1:length(2))//'SPECIES_'//aspecnumb//'.namelist',access='append',status='replace',err=1000)
356    write(unitspecies,nml=species_params)
357    close(unitspecies)
358  endif
359
360  return
361
362996 write(*,*) '#####################################################'
363  write(*,*) '#### FLEXPART MODEL ERROR!                      #### '
364  write(*,*) '#### WET DEPOSITION SWITCHED ON, BUT NO HENRYS  #### '
365  write(*,*) '#### CONSTANT IS SET                            ####'
366  write(*,*) '#### PLEASE MODIFY SPECIES DESCR. FILE!        #### '
367  write(*,*) '#####################################################'
368  stop
369
370
371997 write(*,*) '#####################################################'
372  write(*,*) '#### FLEXPART MODEL ERROR!                      #### '
373  write(*,*) '#### THE ASSSOCIATED SPECIES HAS TO BE DEFINED  #### '
374  write(*,*) '#### BEFORE THE ONE WHICH POINTS AT IT          #### '
375  write(*,*) '#### PLEASE CHANGE ORDER IN RELEASES OR ADD     #### '
376  write(*,*) '#### THE ASSOCIATED SPECIES IN RELEASES         #### '
377  write(*,*) '#####################################################'
378  stop
379
380
381998 write(*,*) '#####################################################'
382  write(*,*) '#### FLEXPART MODEL ERROR!                      #### '
383  write(*,*) '#### THE SPECIES FILE FOR SPECIES ', id_spec
384  write(*,*) '#### CANNOT BE FOUND: CREATE FILE'
385  write(*,*) '#### ',path(1)(1:length(1)),'SPECIES/SPECIES_',aspecnumb
386  write(*,*) '#####################################################'
387  stop
388
3891000 write(*,*) ' #### FLEXPART MODEL ERROR! FILE "SPECIES_',aspecnumb,'.namelist'
390  write(*,*) ' #### CANNOT BE OPENED IN THE DIRECTORY       #### '
391  write(*,'(a)') path(2)(1:length(2))
392  stop
393
394end subroutine readspecies
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG