Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flexinvertplus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flexpart
flexinvertplus
Commits
ece87145
Commit
ece87145
authored
5 months ago
by
ronesy
Browse files
Options
Downloads
Patches
Plain Diff
change to observation space uncertainty for when background is optimized
parent
5eed8c43
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/calc_conc.f90
+10
-2
10 additions, 2 deletions
source/calc_conc.f90
with
10 additions
and
2 deletions
source/calc_conc.f90
+
10
−
2
View file @
ece87145
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment