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
5c994618
Commit
5c994618
authored
Jan 30, 2018
by
Knut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output: 9999.0 => 9999*_ONE_
parent
4263d6f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/2d/variables_2d.F90
src/2d/variables_2d.F90
+1
-1
src/3d/salinity.F90
src/3d/salinity.F90
+2
-2
src/3d/temperature.F90
src/3d/temperature.F90
+2
-2
No files found.
src/2d/variables_2d.F90
View file @
5c994618
...
...
@@ -114,7 +114,7 @@
break_stat
=
0
#endif
z
=
-9999
.0
;
zo
=
_
ZERO_
z
=
-9999
*
_
ONE_
;
zo
=
_
ZERO_
zub
=
_
ZERO_
;
zub0
=
_
ZERO_
zvb
=
_
ZERO_
;
zvb0
=
_
ZERO_
...
...
src/3d/salinity.F90
View file @
5c994618
...
...
@@ -201,8 +201,8 @@
stop
'init_salinity'
end
select
S
(:,:,
0
)
=
-9999
.0
forall
(
i
=
imin
:
imax
,
j
=
jmin
:
jmax
,
az
(
i
,
j
)
.eq.
0
)
S
(
i
,
j
,:)
=
-9999
.0
S
(:,:,
0
)
=
-9999
*
_
ONE_
forall
(
i
=
imin
:
imax
,
j
=
jmin
:
jmax
,
az
(
i
,
j
)
.eq.
0
)
S
(
i
,
j
,:)
=
-9999
*
_
ONE_
call
update_3d_halo
(
S
,
S
,
az
,
imin
,
jmin
,
imax
,
jmax
,
kmax
,
D_TAG
)
call
wait_halo
(
D_TAG
)
...
...
src/3d/temperature.F90
View file @
5c994618
...
...
@@ -279,8 +279,8 @@ end interface
stop
'init_temperature'
end
select
T
(:,:,
0
)
=
-9999
.0
forall
(
i
=
imin
:
imax
,
j
=
jmin
:
jmax
,
az
(
i
,
j
)
.eq.
0
)
T
(
i
,
j
,:)
=
-9999
.0
T
(:,:,
0
)
=
-9999
*
_
ONE_
forall
(
i
=
imin
:
imax
,
j
=
jmin
:
jmax
,
az
(
i
,
j
)
.eq.
0
)
T
(
i
,
j
,:)
=
-9999
*
_
ONE_
call
update_3d_halo
(
T
,
T
,
az
,
imin
,
jmin
,
imax
,
jmax
,
kmax
,
D_TAG
)
call
wait_halo
(
D_TAG
)
...
...
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