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
b5d010e0
Commit
b5d010e0
authored
May 29, 2002
by
gotm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New naming of .h files
parent
fcf2f446
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
22 deletions
+31
-22
src/2d/Makefile
src/2d/Makefile
+2
-2
src/2d/variables_2d.F90
src/2d/variables_2d.F90
+9
-6
src/3d/Makefile
src/3d/Makefile
+2
-2
src/3d/variables_3d.F90
src/3d/variables_3d.F90
+9
-6
src/domain/domain.F90
src/domain/domain.F90
+9
-6
No files found.
src/2d/Makefile
View file @
b5d010e0
#$Id: Makefile,v 1.
1 2002-05-02 14:00:41
gotm Exp $
#$Id: Makefile,v 1.
2 2002-05-29 13:37:49
gotm Exp $
#
# Makefile to build the 2D specific library - libm2d.a
#
include
../Rules.make
INCS
=
static
.h dynamic_declarations.h dynamic_allocations
.h
INCS
=
static
_2d.h dynamic_declarations_2d.h dynamic_allocations_2d
.h
LIB
=
$(LIBDIR)
/lib2d
${buildtype}
.a
MODSRC
=
m2d.F90 variables_2d.F90
...
...
src/2d/variables_2d.F90
View file @
b5d010e0
!$Id: variables_2d.F90,v 1.
1 2002-05-02 14:00:47
gotm Exp $
!$Id: variables_2d.F90,v 1.
2 2002-05-29 13:37:49
gotm Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -20,9 +20,9 @@
!
! !PUBLIC DATA MEMBERS:
#ifdef STATIC
#include "static.h"
#include "static
_2d
.h"
#else
#include "dynamic_declarations.h"
#include "dynamic_declarations
_2d
.h"
#endif
integer
::
size2d_field
integer
::
mem2d
...
...
@@ -31,8 +31,11 @@
! Original author(s): Karsten Bolding & Hans Burchard
!
! $Log: variables_2d.F90,v $
! Revision 1.1 2002-05-02 14:00:47 gotm
! Initial revision
! Revision 1.2 2002-05-29 13:37:49 gotm
! New naming of .h files
!
! Revision 1.1.1.1 2002/05/02 14:00:47 gotm
! recovering after CVS crash
!
! Revision 1.1 2001/05/03 19:30:41 bbh
! 2D variables seperated from m2d
...
...
@@ -86,7 +89,7 @@
! Allocates memory for the public data members - if not static
#ifndef STATIC
#include "dynamic_allocations.h"
#include "dynamic_allocations
_2d
.h"
#endif
#ifdef DEBUG
...
...
src/3d/Makefile
View file @
b5d010e0
#$Id: Makefile,v 1.
1 2002-05-02 14:00:52
gotm Exp $
#$Id: Makefile,v 1.
2 2002-05-29 13:37:49
gotm Exp $
#
# Makefile to build the 3D specific library - libm3d.a
#
include
../Rules.make
INCS
=
static
.h dynamic_declarations.h dynamic_allocations
.h
INCS
=
static
_3d.h dynamic_declarations_3d.h dynamic_allocations_3d
.h
LIB
=
$(LIBDIR)
/lib3d
${buildtype}
.a
MODSRC
=
m3d.F90 variables_3d.F90 advection_3d.F90 eqstate.F90
\
...
...
src/3d/variables_3d.F90
View file @
b5d010e0
!$Id: variables_3d.F90,v 1.
1 2002-05-02 14:00:58
gotm Exp $
!$Id: variables_3d.F90,v 1.
2 2002-05-29 13:37:50
gotm Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -22,9 +22,9 @@
REALTYPE
::
dt
,
cnpar
=
0.9
!
#ifdef STATIC
#include "static.h"
#include "static
_3d
.h"
#else
#include "dynamic_declarations.h"
#include "dynamic_declarations
_3d
.h"
#endif
integer
::
size3d_field
integer
::
mem3d
...
...
@@ -33,8 +33,11 @@
! Original author(s): Karsten Bolding & Hans Burchard
!
! $Log: variables_3d.F90,v $
! Revision 1.1 2002-05-02 14:00:58 gotm
! Initial revision
! Revision 1.2 2002-05-29 13:37:50 gotm
! New naming of .h files
!
! Revision 1.1.1.1 2002/05/02 14:00:58 gotm
! recovering after CVS crash
!
! Revision 1.6 2001/09/19 13:07:00 bbh
! Moved advection related 3D fields to global allocation
...
...
@@ -102,7 +105,7 @@
! Allocates memory for the public data members - if not static
#ifndef STATIC
#include "dynamic_allocations.h"
#include "dynamic_allocations
_3d
.h"
#endif
#ifdef DEBUG
...
...
src/domain/domain.F90
View file @
b5d010e0
!$Id: domain.F90,v 1.
1 2002-05-02 14:01:11
gotm Exp $
!$Id: domain.F90,v 1.
2 2002-05-29 13:37:50
gotm Exp $
#include "cppdefs.h"
!-----------------------------------------------------------------------
!BOP
...
...
@@ -27,9 +27,9 @@
logical
::
openbdy
=
.false.
integer
::
calc_points
#ifdef STATIC
#include "static.h"
#include "static
_domain
.h"
#else
#include "dynamic_declarations.h"
#include "dynamic_declarations
_domain
.h"
#endif
integer
::
nsbv
integer
,
parameter
::
INNER
=
1
...
...
@@ -48,8 +48,11 @@
! Original author(s): Karsten Bolding & Hans Burchard
!
! $Log: domain.F90,v $
! Revision 1.1 2002-05-02 14:01:11 gotm
! Initial revision
! Revision 1.2 2002-05-29 13:37:50 gotm
! New naming of .h files
!
! Revision 1.1.1.1 2002/05/02 14:01:11 gotm
! recovering after CVS crash
!
! Revision 1.19 2001/10/23 14:15:55 bbh
! Moved ga from coordinates.F90 to domain.F90
...
...
@@ -237,7 +240,7 @@
il
=
imin
;
ih
=
imax
;
jl
=
jmin
;
jh
=
jmax
#ifndef STATIC
iimin
=
imin
;
iimax
=
imax
;
jjmin
=
jmin
;
jjmax
=
jmax
;
kmax
=
kdum
#include "dynamic_allocations.h"
#include "dynamic_allocations
_domain
.h"
#endif
call
get_bathymetry
(
H
,
Hland
,
il
,
ih
,
jl
,
jh
,
rc
)
case
default
...
...
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