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
4d924975
Commit
4d924975
authored
2 months ago
by
Maren Kaluza
Committed by
Sebastian Müller
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
changed 'stop' to error_messages
parent
b3a7d2df
No related branches found
Branches containing commit
No related tags found
1 merge request
!81
Rework optimization routines
Pipeline
#267792
passed with stages
in 10 minutes and 42 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/mo_optimization_types.f90
+3
-4
3 additions, 4 deletions
src/mo_optimization_types.f90
with
3 additions
and
4 deletions
src/mo_optimization_types.f90
+
3
−
4
View file @
4d924975
...
...
@@ -9,6 +9,7 @@
!! FORCES is released under the LGPLv3+ license \license_note
MODULE
mo_optimization_types
use
mo_kind
,
only
:
i4
,
dp
use
mo_message
,
only
:
error_message
IMPLICIT
NONE
...
...
@@ -140,7 +141,6 @@ MODULE mo_optimization_types
end
subroutine
sim_data_add
! ToDo: rename ndim -> data_shape
subroutine
sim_data_allocate
(
this
,
name
,
data_shape
)
class
(
sim_data_t
),
target
,
intent
(
inout
)
::
this
character
(
*
),
intent
(
in
)
::
name
...
...
@@ -162,8 +162,7 @@ MODULE mo_optimization_types
case
(
5
)
allocate
(
this
%
variables
(
i
)
%
data_5d
(
data_shape
(
1
),
data_shape
(
2
),
data_shape
(
3
),
data_shape
(
4
),
data_shape
(
5
)))
case
default
! ToDo: replace stop by error message
stop
(
'sim_data_allocate: Allocating simulated data with other dimensions than 1 to 5 is not impemented.'
)
call
error_message
(
'sim_data_allocate: Allocating simulated data with other dimensions than 1 to 5 is not impemented.'
)
end
select
end
if
end
do
...
...
@@ -183,7 +182,7 @@ MODULE mo_optimization_types
end
if
end
do
if
(
sim_data_get_id
==
-1
)
stop
(
'sim_data_get_id: The simulated variable name
does not exist.'
)
if
(
sim_data_get_id
==
-1
)
call
error_message
(
'sim_data_get_id: The simulated variable name
'
,
trim
(
name
),
'
does not exist.'
)
end
function
sim_data_get_id
...
...
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