Skip to content
Snippets Groups Projects
Commit 82842c4a authored by ronesy's avatar ronesy
Browse files

change name aero -> aer to be consistent with 3-character species names

parent ece87145
No related branches found
No related tags found
No related merge requests found
...@@ -73,8 +73,8 @@ satellite: .false. ...@@ -73,8 +73,8 @@ satellite: .false.
# Use ground-based observations (true or false) # Use ground-based observations (true or false)
ground: .true. ground: .true.
# Species ("co2" or "ghg" or "aero") # Species ("co2" or "ghg" or "aer")
spec: aero spec: aer
# Coefficient to convert from grid units of ppt to ppb # Coefficient to convert from grid units of ppt to ppb
coeff: 1.0 coeff: 1.0
......
...@@ -46,7 +46,7 @@ file_log: flexinvert.log ...@@ -46,7 +46,7 @@ file_log: flexinvert.log
# Regions mask file: # Regions mask file:
# needs to correspond to flexpart domain and resolution (if using nested output needs to correspond to nest) # needs to correspond to flexpart domain and resolution (if using nested output needs to correspond to nest)
file_regions: /mypath/output/regions_aero.nc file_regions: /mypath/output/regions_aer.nc
varname_regs: regions varname_regs: regions
lonname_regs: longitude lonname_regs: longitude
latname_regs: latitude latname_regs: latitude
...@@ -68,7 +68,7 @@ latname_lsm: lat ...@@ -68,7 +68,7 @@ latname_lsm: lat
# Global prior flux file: flux kg/m2/h # Global prior flux file: flux kg/m2/h
# needs to correspond to flexpart domain and resolution # needs to correspond to flexpart domain and resolution
# generic name with year YYYY # generic name with year YYYY
filename_flx: AERO_TOTAL_YYYY_10x10.nc filename_flx: AER_TOTAL_YYYY_10x10.nc
varname_flx: emis varname_flx: emis
lonname_flx: longitude lonname_flx: longitude
latname_flx: latitude latname_flx: latitude
...@@ -84,6 +84,6 @@ latnest_flx: ...@@ -84,6 +84,6 @@ latnest_flx:
timenest_flx: timenest_flx:
# Receptor list file: # Receptor list file:
file_recept: /mypath/input/reclist_aero.txt file_recept: /mypath/input/reclist_aer.txt
...@@ -76,7 +76,7 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1, ...@@ -76,7 +76,7 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1,
flxbg = fluxes%flxnee(:,:,ind) + & flxbg = fluxes%flxnee(:,:,ind) + &
fluxes%flxff(:,:,ind) + & fluxes%flxff(:,:,ind) + &
fluxes%flxocn(:,:,ind) fluxes%flxocn(:,:,ind)
else if (( trim(config%spec).eq.'ghg' ) .or. ( trim(config%spec).eq.'aero' )) then else if (( trim(config%spec).eq.'ghg' ) .or. ( trim(config%spec).eq.'aer' )) then
! GHG or aerosol species ! GHG or aerosol species
flxbg = fluxes%flx(:,:,ind) flxbg = fluxes%flx(:,:,ind)
endif endif
...@@ -162,7 +162,7 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1, ...@@ -162,7 +162,7 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1,
else else
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr) obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr)
endif endif
else if ( trim(config%spec).eq.'aero' ) then else if ( trim(config%spec).eq.'aer' ) then
! aerosols ! aerosols
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr) obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr)
endif endif
......
...@@ -91,10 +91,10 @@ program main ...@@ -91,10 +91,10 @@ program main
call init_co2(files, config, fluxes, obs, states, covar) call init_co2(files, config, fluxes, obs, states, covar)
else if ( config%spec.eq.'ghg' ) then else if ( config%spec.eq.'ghg' ) then
call init_ghg(files, config, fluxes, obs, states, covar) call init_ghg(files, config, fluxes, obs, states, covar)
else if ( config%spec.eq.'aero' ) then else if ( config%spec.eq.'aer' ) then
call init_aero(files, config, fluxes, obs, states, covar) call init_aero(files, config, fluxes, obs, states, covar)
else else
write(logid,*) 'ERROR: spec must be one of co2, ghg, aero' write(logid,*) 'ERROR: spec must be one of co2, ghg, aer'
stop stop
endif endif
......
...@@ -117,7 +117,7 @@ module mod_settings ...@@ -117,7 +117,7 @@ module mod_settings
integer :: datei ! start date (yyyymmdd) integer :: datei ! start date (yyyymmdd)
integer :: datef ! end date (yyyymmdd) integer :: datef ! end date (yyyymmdd)
logical :: average_fp ! average footprints to match observation (true or false) logical :: average_fp ! average footprints to match observation (true or false)
character(len=3) :: spec ! species ('co2' or 'ghg' or 'aero') character(len=3) :: spec ! species ('co2' or 'ghg' or 'aer')
character(len=max_name_len) :: method ! inversion method ('analytic' or 'congrad' or 'm1qn3') character(len=max_name_len) :: method ! inversion method ('analytic' or 'congrad' or 'm1qn3')
logical :: lognormal ! use log-normal distribution in state space logical :: lognormal ! use log-normal distribution in state space
real :: trunc ! truncation factor for eigenvalues of B real :: trunc ! truncation factor for eigenvalues of B
......
...@@ -173,7 +173,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o) ...@@ -173,7 +173,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o)
ftime(n) = juldate(int(dates(n)/1d6),int(dates(n)-floor(dates(n)/1d6)*1d6)) ftime(n) = juldate(int(dates(n)/1d6),int(dates(n)-floor(dates(n)/1d6)*1d6))
end do end do
factor(:,:,:) = 1. factor(:,:,:) = 1.
if ( config%spec.ne.'aero' ) then if ( config%spec.ne.'aer' ) then
filefactor = trim(path_flexrec)//'factor_drygrid' filefactor = trim(path_flexrec)//'factor_drygrid'
inquire ( file=trim(filefactor),exist=lexist ) inquire ( file=trim(filefactor),exist=lexist )
if ( lexist ) then if ( lexist ) then
...@@ -239,7 +239,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o) ...@@ -239,7 +239,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o)
end do end do
! convert s.m3/kg to s.m2/kg ! convert s.m3/kg to s.m2/kg
grid = grid/outheight(1) grid = grid/outheight(1)
if ( config%spec.eq.'aero' ) then if ( config%spec.eq.'aer' ) then
! convert to match concentration units ! convert to match concentration units
grid = grid*config%coeff grid = grid*config%coeff
else else
...@@ -262,7 +262,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o) ...@@ -262,7 +262,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o)
if ( allocated(factor_nest) ) deallocate(factor_nest) if ( allocated(factor_nest) ) deallocate(factor_nest)
allocate ( factor_nest(nnxgrid,nnygrid,nread) ) allocate ( factor_nest(nnxgrid,nnygrid,nread) )
factor(:,:,:) = 1. factor(:,:,:) = 1.
if ( config%spec.ne.'aero' ) then if ( config%spec.ne.'aer' ) then
filefactor = trim(path_flexrec)//'factor_drygrid_nest' filefactor = trim(path_flexrec)//'factor_drygrid_nest'
inquire ( file=trim(filefactor),exist=lexist ) inquire ( file=trim(filefactor),exist=lexist )
if ( lexist ) then if ( lexist ) then
...@@ -316,7 +316,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o) ...@@ -316,7 +316,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o)
! convert s.m3/kg to s.m2/kg ! convert s.m3/kg to s.m2/kg
gridnest = gridnest/outheight(1) gridnest = gridnest/outheight(1)
! convert from equivalent ppt to observation units (e.g. ppmv) ! convert from equivalent ppt to observation units (e.g. ppmv)
if ( config%spec.eq.'aero' ) then if ( config%spec.eq.'aer' ) then
gridnest = gridnest*config%coeff gridnest = gridnest*config%coeff
else else
gridnest = gridnest*config%coeff*mmair/config%molarmass gridnest = gridnest*config%coeff*mmair/config%molarmass
...@@ -592,7 +592,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o) ...@@ -592,7 +592,7 @@ subroutine simulate(iter, files, config, fluxes, obs, states, grad_o, cost_o)
endif endif
! check if background missing (not for aerosols) ! check if background missing (not for aerosols)
if ( config%spec.ne.'aero'.and.sum(obs%cini(i,:)).eq.0. ) then if ( config%spec.ne.'aer'.and.sum(obs%cini(i,:)).eq.0. ) then
write(logid,*) 'ERROR: background zero for observation ',i write(logid,*) 'ERROR: background zero for observation ',i
stop stop
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment