Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
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