-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrees.h
29 lines (29 loc) · 1021 Bytes
/
frees.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
c====================== include file "frees.h" =========================
#ifdef hcomments
c
c @(#) SCCS module: frees.h version: 1.1
c Creation date: 10/13/97
c
c-----------------------------------------------------------------------
c Variables for free surface model calculation of external mode
c
c h0 = free surface model sea surface height
c u0 = free surface model velocity east
c v0 = free surface model velocity north
c h = depth over "u,v" points
c hr = reciprocal depth over "u,v" points
c zu = vertically averaged zonal forcing
c zv = vertically averaged meridional forcing
# ifndef free_eb
c freeav = time average of free surface fields
# endif
c-----------------------------------------------------------------------
c
#endif
common /fields/
& h0(IMT_S,JMT_S,3), u0(IMT_S,JMT_S,3), v0(IMT_S,JMT_S,3)
&,h(IMT_S,JMT_S), hr(IMT_S,JMT_S), zu(IMT_S,JMT_S)
&,zv(IMT_S,JMT_S)
#ifndef free_eb
&,freeav(3,IMT_S,JMT_S)
#endif