Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FORCES
Manage
Activity
Members
Labels
Plan
Issues
13
Issue boards
Milestones
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Contributor 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
CHS
FORCES
Commits
24f3f54f
Commit
24f3f54f
authored
1 year ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
mo_optimization_utils: added reservoir/ lake volume as optional argument to eval_interface
parent
4e0815f3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!78
mLM related updates
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/mo_optimization_utils.f90
+13
-7
13 additions, 7 deletions
src/mo_optimization_utils.f90
with
13 additions
and
7 deletions
src/mo_optimization_utils.f90
+
13
−
7
View file @
24f3f54f
...
...
@@ -13,17 +13,23 @@ module mo_optimization_utils
!> \brief Interface for evaluation routine.
abstract
interface
subroutine
eval_interface
(
parameterset
,
opti_domain_indices
,
runoff
,
smOptiSim
,
neutronsOptiSim
,
etOptiSim
,
twsOptiSim
,
BFI
)
subroutine
eval_interface
(
parameterset
,
opti_domain_indices
,
runoff
,
smOptiSim
,
neutronsOptiSim
,
etOptiSim
,
twsOptiSim
,
&
lake_level
,
lake_volume
,
lake_area
,
lake_spill
,
lake_outflow
,
BFI
)
use
mo_kind
,
only
:
dp
,
i4
use
mo_optimization_types
,
only
:
optidata_sim
real
(
dp
),
dimension
(:),
intent
(
in
)
::
parameterset
integer
(
i4
),
dimension
(:),
optional
,
intent
(
in
)
::
opti_domain_indices
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
runoff
!< dim1=time dim2=gauge
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
smOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
neutronsOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
etOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
twsOptiSim
!< dim1=ncells, dim2=time
real
(
dp
),
dimension
(:),
allocatable
,
optional
,
intent
(
out
)
::
BFI
!< baseflow index, dim1=domainID
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
runoff
!< dim1=time dim2=gauge
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
smOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
neutronsOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
etOptiSim
!< dim1=ncells, dim2=time
type
(
optidata_sim
),
dimension
(:),
optional
,
intent
(
inout
)
::
twsOptiSim
!< dim1=ncells, dim2=time
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
lake_level
!< dim1=time dim2=lake
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
lake_volume
!< dim1=time dim2=lake
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
lake_area
!< dim1=time dim2=lake
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
lake_spill
!< dim1=time dim2=lake
real
(
dp
),
dimension
(:,
:),
allocatable
,
optional
,
intent
(
out
)
::
lake_outflow
!< dim1=time dim2=lake
real
(
dp
),
dimension
(:),
allocatable
,
optional
,
intent
(
out
)
::
BFI
!< baseflow index, dim1=domainID
end
subroutine
end
interface
...
...
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