Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FORCES
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Code
Merge requests
3
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
d9244a47
Commit
d9244a47
authored
1 month ago
by
Maren Kaluza
Browse files
Options
Downloads
Patches
Plain Diff
Implemented final procedures for sim_data_t and sim_var_t.
parent
5fe220bd
No related branches found
Branches containing commit
No related tags found
1 merge request
!81
Rework optimization routines
Pipeline
#274720
failed with stages
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/mo_optimization_types.f90
+21
-0
21 additions, 0 deletions
src/mo_optimization_types.f90
with
21 additions
and
0 deletions
src/mo_optimization_types.f90
+
21
−
0
View file @
d9244a47
...
...
@@ -56,6 +56,7 @@ MODULE mo_optimization_types
procedure
,
private
::
sim_data_set_pointer_4d
procedure
,
private
::
sim_data_set_pointer_5d
! ToDo: destructor
final
::
sim_data_destructor
generic
,
public
::
set_pointer
=>
sim_data_set_pointer_1d
,
sim_data_set_pointer_2d
,
&
sim_data_set_pointer_3d
,
sim_data_set_pointer_4d
,
sim_data_set_pointer_5d
end
type
sim_data_t
...
...
@@ -72,6 +73,7 @@ MODULE mo_optimization_types
!< 0 total, n every n timestep
contains
procedure
,
public
::
is_allocated
=>
sim_var_is_allocated
final
::
sim_var_destructor
end
type
sim_var_t
!> \brief optional data, such as sm, neutrons, et, tws
...
...
@@ -396,4 +398,23 @@ MODULE mo_optimization_types
this
%
averageCounter
=
this
%
averageCounter
+
1
end
subroutine
optidata_sim_average_add
subroutine
sim_data_destructor
(
this
)
type
(
sim_data_t
),
intent
(
inout
)
::
this
if
(
allocated
(
this
%
variables
))
deallocate
(
this
%
variables
)
end
subroutine
sim_data_destructor
subroutine
sim_var_destructor
(
this
)
type
(
sim_var_t
),
intent
(
inout
)
::
this
if
(
allocated
(
this
%
name
))
deallocate
(
this
%
name
)
if
(
allocated
(
this
%
data_1d
))
deallocate
(
this
%
data_1d
)
if
(
allocated
(
this
%
data_2d
))
deallocate
(
this
%
data_2d
)
if
(
allocated
(
this
%
data_3d
))
deallocate
(
this
%
data_3d
)
if
(
allocated
(
this
%
data_4d
))
deallocate
(
this
%
data_4d
)
if
(
allocated
(
this
%
data_5d
))
deallocate
(
this
%
data_5d
)
end
subroutine
sim_var_destructor
END
MODULE
mo_optimization_types
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