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
6ca9faf5
Commit
6ca9faf5
authored
Mar 17, 2006
by
kbk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simulation with hotstart identical to continuous run - checked with md5sum
parent
f9ba064f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
37 deletions
+36
-37
src/3d/variables_3d.F90
src/3d/variables_3d.F90
+6
-1
src/getm/initialise.F90
src/getm/initialise.F90
+10
-26
src/output/output.F90
src/output/output.F90
+20
-10
No files found.
src/3d/variables_3d.F90
View file @
6ca9faf5
!$Id: variables_3d.F90,v 1.1
0 2006-03-01 15:54:08
kbk Exp $
!$Id: variables_3d.F90,v 1.1
1 2006-03-17 17:19:54
kbk Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -199,6 +199,11 @@
huadv
=
_
ZERO_
;
hvadv
=
_
ZERO_
#endif
#ifndef NO_BAROCLINIC
idpdx
=
_
ZERO_
idpdy
=
_
ZERO_
#endif
adv_schemes
(
1
)
=
"3D first-order upstream advection"
adv_schemes
(
2
)
=
"upstream advection (first-order, monotone)"
adv_schemes
(
3
)
=
"P2-PDM advection (third-order, non-monotone)"
...
...
src/getm/initialise.F90
View file @
6ca9faf5
!$Id: initialise.F90,v 1.1
2 2006-03-17 11:06:3
2 kbk Exp $
!$Id: initialise.F90,v 1.1
3 2006-03-17 17:19:5
2 kbk Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -22,6 +22,9 @@
! Original author(s): Karsten Bolding & Hans Burchard
!
! $Log: initialise.F90,v $
! Revision 1.13 2006-03-17 17:19:52 kbk
! simulation with hotstart identical to continuous run - checked with md5sum
!
! Revision 1.12 2006-03-17 11:06:32 kbk
! cleaner inclusion of SPM module
!
...
...
@@ -115,6 +118,7 @@
use
time
,
only
:
start
,
timestr
,
timestep
use
m2d
,
only
:
init_2d
,
z
,
zu
,
zv
#ifndef NO_3D
use
m2d
,
only
:
Uint
,
Vint
use
m3d
,
only
:
cord_relax
,
init_3d
,
ssen
,
ssun
,
ssvn
#ifndef NO_BAROCLINIC
use
m3d
,
only
:
T
...
...
@@ -307,13 +311,13 @@
end
if
hot_in
=
trim
(
out_dir
)
//
'/'
//
'restart'
//
trim
(
buf
)
call
restart_file
(
READING
,
trim
(
hot_in
),
MinN
,
runtype
)
#ifndef NO_3D
if
(
runtype
.gt.
1
)
then
call
start_macro
()
call
depth_update
if
(
runtype
.ge.
2
)
then
call
coordinates
(
vert_cord
,
cord_relax
,
maxdepth
)
Uint
=
_
ZERO_
Vint
=
_
ZERO_
end
if
#endif
call
depth_update
#ifndef NO_BAROCLINIC
if
(
runtype
.ge.
3
)
call
do_eqstate
()
#endif
...
...
@@ -323,26 +327,6 @@
MinN
=
MinN
+1
end
if
#ifndef NO_3D
if
(
runtype
.ge.
2
)
then
do
j
=
jjmin
-
HALO
,
jjmax
+
HALO
do
i
=
iimin
-
HALO
,
iimax
+
HALO
ssen
(
i
,
j
)
=
z
(
i
,
j
)
end
do
end
do
do
j
=
jjmin
-
HALO
,
jjmax
+
HALO
do
i
=
iimin
-
HALO
,
iimax
+
HALO
-1
ssun
(
i
,
j
)
=
zu
(
i
,
j
)
end
do
end
do
do
j
=
jjmin
-
HALO
,
jjmax
+
HALO
-1
do
i
=
iimin
-
HALO
,
iimax
+
HALO
ssvn
(
i
,
j
)
=
zv
(
i
,
j
)
end
do
end
do
end
if
#endif
call
init_input
(
input_dir
,
MinN
)
if
(
runtype
.le.
2
)
then
...
...
src/output/output.F90
View file @
6ca9faf5
!$Id: output.F90,v 1.1
4 2006-03-17 11:06:33
kbk Exp $
!$Id: output.F90,v 1.1
5 2006-03-17 17:19:54
kbk Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -54,6 +54,9 @@
! Original author(s): Karsten Bolding & Hans Burchard
!
! $Log: output.F90,v $
! Revision 1.15 2006-03-17 17:19:54 kbk
! simulation with hotstart identical to continuous run - checked with md5sum
!
! Revision 1.14 2006-03-17 11:06:33 kbk
! cleaner inclusion of SPM module
!
...
...
@@ -359,9 +362,13 @@
use
variables_2d
,
only
:
z
,
zo
use
variables_2d
,
only
:
U
,
fU
,
zu
,
zub
,
SlUx
,
Slru
use
variables_2d
,
only
:
V
,
fV
,
zv
,
zvb
,
SlVx
,
Slrv
use
variables_2d
,
only
:
Uint
,
Vint
use
variables_2d
,
only
:
Uint
o
,
Vinto
#ifndef NO_3D
use
variables_3d
,
only
:
uu
,
vv
,
tke
,
eps
,
num
,
nuh
,
ssen
,
ssun
,
ssvn
use
variables_3d
,
only
:
ssen
,
ssun
,
ssvn
use
variables_3d
,
only
:
sseo
,
ssuo
,
ssvo
use
variables_3d
,
only
:
uu
,
vv
,
ww
use
variables_3d
,
only
:
uuEx
,
vvEx
use
variables_3d
,
only
:
tke
,
eps
,
num
,
nuh
#ifndef NO_BAROCLINIC
use
variables_3d
,
only
:
T
,
S
#endif
...
...
@@ -419,8 +426,11 @@
#ifndef NO_3D
if
(
runtype
.ge.
2
)
then
LEVEL3
'saving 3D barotropic variables'
!kbk write(RESTART) Uint,Vint
write
(
RESTART
)
uu
,
vv
write
(
RESTART
)
ssen
,
ssun
,
ssvn
write
(
RESTART
)
sseo
,
ssuo
,
ssvo
write
(
RESTART
)
Uinto
,
Vinto
write
(
RESTART
)
uu
,
vv
,
ww
write
(
RESTART
)
uuEx
,
vvEx
write
(
RESTART
)
tke
,
eps
write
(
RESTART
)
num
,
nuh
#ifndef NO_BAROCLINIC
...
...
@@ -460,12 +470,12 @@
if
(
runtype
.ge.
2
)
then
!KBK This needs to be changed !!!! KBK
!Only works because E2DFIELD = I2DFIELD
ssen
=
z
ssun
=
zu
ssvn
=
zv
LEVEL3
'reading 3D barotropic variables'
!kbk read(RESTART) Uint,Vint
read
(
RESTART
)
uu
,
vv
read
(
RESTART
)
ssen
,
ssun
,
ssvn
read
(
RESTART
)
sseo
,
ssuo
,
ssvo
read
(
RESTART
)
Uinto
,
Vinto
read
(
RESTART
)
uu
,
vv
,
ww
read
(
RESTART
)
uuEx
,
vvEx
read
(
RESTART
)
tke
,
eps
read
(
RESTART
)
num
,
nuh
#ifndef NO_BAROCLINIC
...
...
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