Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
G
getm
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Knut Klingbeil
getm
Commits
4263d6f3
Commit
4263d6f3
authored
Jan 27, 2018
by
Knut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output: do not check initial T and S if read from restart file
parent
f001657a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
src/3d/salinity.F90
src/3d/salinity.F90
+4
-3
src/3d/temperature.F90
src/3d/temperature.F90
+4
-2
src/3d/variables_3d.F90
src/3d/variables_3d.F90
+2
-0
No files found.
src/3d/salinity.F90
View file @
4263d6f3
...
...
@@ -123,19 +123,20 @@
LEVEL4
'out-of-bound values result in warnings only'
end
if
if
(
salt_method
.ne.
0
)
then
call
check_3d_fields
(
imin
,
jmin
,
imax
,
jmax
,
kmin
,
kmax
,
az
,
&
S
,
min_salt
,
max_salt
,
status
)
if
(
status
.gt.
0
)
then
if
(
salt_check
.gt.
0
)
then
call
getm_error
(
"
do
_salinity()"
,
&
call
getm_error
(
"
init
_salinity()"
,
&
"out-of-bound values encountered"
)
end
if
if
(
salt_check
.lt.
0
)
then
LEVEL1
'
do
_salinity(): '
,
status
,
&
LEVEL1
'
init
_salinity(): '
,
status
,
&
' out-of-bound values encountered'
end
if
end
if
end
if
end
if
...
...
src/3d/temperature.F90
View file @
4263d6f3
...
...
@@ -202,18 +202,20 @@ end interface
LEVEL4
'out-of-bound values result in warnings only'
end
if
if
(
temp_method
.ne.
0
)
then
call
check_3d_fields
(
imin
,
jmin
,
imax
,
jmax
,
kmin
,
kmax
,
az
,
&
T
,
min_temp
,
max_temp
,
status
)
if
(
status
.gt.
0
)
then
if
(
temp_check
.gt.
0
)
then
call
getm_error
(
"
do
_temperature()"
,
&
call
getm_error
(
"
init
_temperature()"
,
&
"out-of-bound values encountered"
)
end
if
if
(
temp_check
.lt.
0
)
then
LEVEL1
'
do
_temperature(): '
,
status
,
&
LEVEL1
'
init
_temperature(): '
,
status
,
&
' out-of-bound values encountered'
end
if
end
if
end
if
end
if
#ifdef DEBUG
...
...
src/3d/variables_3d.F90
View file @
4263d6f3
...
...
@@ -192,6 +192,8 @@
#include "dynamic_allocations_3d.h"
#endif
kmin
=
1
hn
=
_
ZERO_
;
hun
=
_
ZERO_
;
hvn
=
_
ZERO_
uu
=
_
ZERO_
;
vv
=
_
ZERO_
;
ww
=
_
ZERO_
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment