Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OxyPOM
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ElbeXtreme
OxyPOM
Commits
7652936f
Commit
7652936f
authored
1 week ago
by
og
Browse files
Options
Downloads
Patches
Plain Diff
bug in ammonia uptake solved
parent
80f4cc1b
No related branches found
No related tags found
No related merge requests found
Pipeline
#510174
passed
1 week ago
Stage: lint
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/oxypom/oxypom.F90
+4
-4
4 additions, 4 deletions
src/oxypom/oxypom.F90
with
4 additions
and
4 deletions
src/oxypom/oxypom.F90
+
4
−
4
View file @
7652936f
...
...
@@ -95,9 +95,9 @@ contains
! Store parameter values in our own derived type
! All rates must be provided in values per day and are converted here to values per second.
call
self
%
get_parameter
(
self
%
an
,
'an'
,
'--'
,
'stoichiometric ratio N:C phytoplankton'
,
default
=
6.625
_rk
)
call
self
%
get_parameter
(
self
%
ap
,
'ap'
,
'--'
,
'stoichiometric ratio P:C phytoplankton'
,
default
=
106.0
_rk
)
call
self
%
get_parameter
(
self
%
asi
,
'asi'
,
'--'
,
'stoichiometric ratio Si:C diatoms'
,
default
=
7.06666666666667
_rk
)
call
self
%
get_parameter
(
self
%
an
,
'an'
,
'--'
,
'stoichiometric ratio N:C phytoplankton'
,
default
=
0.151
_rk
)
call
self
%
get_parameter
(
self
%
ap
,
'ap'
,
'--'
,
'stoichiometric ratio P:C phytoplankton'
,
default
=
0.0094
_rk
)
call
self
%
get_parameter
(
self
%
asi
,
'asi'
,
'--'
,
'stoichiometric ratio Si:C diatoms'
,
default
=
0.1413
_rk
)
call
self
%
get_parameter
(
self
%
amc
,
'amc'
,
'mmol N m-3'
,
'critical concentration NH4 uptake'
,
default
=
0.71_rk
)
call
self
%
get_parameter
(
self
%
ea
,
'ea'
,
'm2 mmol C-1'
,
'specific light extinction coeff. Algae'
,
default
=
0.0012_rk
)
call
self
%
get_parameter
(
self
%
ep
,
'ep'
,
'm2 mmol C-1'
,
'specific light extinction coeff. POC'
,
default
=
0.0012_rk
)
...
...
@@ -376,7 +376,7 @@ contains
kgp2
=
frad2
*
fnut2
*
fpri_tem
*
self
%
kpp
! gross pp rate of algae
krsp1
=
self
%
fgr
*
kgp1
+
(
1.0_rk
-
self
%
fgr
)
*
fres_tem
*
self
%
kmr1
! total respiration rate of algae
krsp2
=
self
%
fgr
*
kgp2
+
(
1.0_rk
-
self
%
fgr
)
*
fres_tem
*
self
%
kmr2
! total respiration rate of algae
fram
=
1.0_rk
+
0.5_rk
*
(
1.0_rk
+
TANH
(
5.0_rk
*
(
NH4
-
self
%
amc
)))
*
(
NH4
/(
NO3
+
NH4
)
-
1.0_rk
)
! fraction N consumed as NH4
fram
=
1.0_rk
+
0.5_rk
*
(
1.0_rk
+
TANH
(
-1
5.0_rk
*
(
NH4
-
self
%
amc
)))
*
(
NH4
/(
NO3
+
NH4
)
-
1.0_rk
)
! fraction N consumed as NH4
DISS
=
self
%
kdiss
*
OPAL
*
(
self
%
sieq
-
Si
)
! Opal dissolution rate
nPP1
=
(
kgp1
-
krsp1
)
*
ALG1
! net primary production rate
nPP2
=
(
kgp2
-
krsp2
)
*
ALG2
! net primary production rate
...
...
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