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

change to observation space uncertainty for when background is optimized

parent 5eed8c43
No related branches found
No related tags found
Loading
...@@ -150,10 +150,18 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1, ...@@ -150,10 +150,18 @@ subroutine calc_conc(config, fluxes, obs, ngrid, gtime, hnest, hbkg, iobs, ix1,
if ( trim(config%spec).eq.'co2' ) then if ( trim(config%spec).eq.'co2' ) then
! CO2 ! CO2
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr + ffferr) if ( config%opt_cini ) then
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr + ffferr)
else
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr + ffferr)
endif
else if ( trim(config%spec).eq.'ghg' ) then else if ( trim(config%spec).eq.'ghg' ) then
! GHG ! GHG
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr) if ( config%opt_cini ) then
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr)
else
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + (sum(obs%cini(iobs,:))*config%cinierr)**2 + bkgerr)
endif
else if ( trim(config%spec).eq.'aero' ) then else if ( trim(config%spec).eq.'aero' ) then
! aerosols ! aerosols
obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr) obs%err(iobs) = sqrt(obs%measerr(iobs)**2 + bkgerr)
......
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