/[MITgcm]/MITgcm/model/src/ini_vertical_grid.F
ViewVC logotype

Contents of /MITgcm/model/src/ini_vertical_grid.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (show annotations) (download)
Sat Aug 22 17:51:09 1998 UTC (25 years, 8 months ago) by cnh
Branch: MAIN
Changes since 1.3: +13 -13 lines
Isomorphism consistency changes

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/ini_vertical_grid.F,v 1.3 1998/07/29 21:37:21 adcroft Exp $
2
3 #include "CPP_EEOPTIONS.h"
4
5 CStartOfInterface
6 SUBROUTINE INI_VERTICAL_GRID( myThid )
7 C /==========================================================\
8 C | SUBROUTINE INI_VERTICAL_GRID |
9 C | o Initialise vertical gridding arrays |
10 C |==========================================================|
11 C | |
12 C \==========================================================/
13
14 C === Global variables ===
15 #include "SIZE.h"
16 #include "EEPARAMS.h"
17 #include "PARAMS.h"
18 #include "GRID.h"
19
20 C == Routine arguments ==
21 C myThid - Number of this instance of INI_DEPTHS
22 INTEGER myThid
23 CEndOfInterface
24
25 C == Local variables ==
26 C K
27 INTEGER K
28
29 C Calculate depths of centers and interfaces
30 rF(1) = 0. _d 0
31 DO K=1,Nr
32 drF(K) = delZ(K)
33 rF(K+1) = rF(K)-delZ(K)
34 ENDDO
35 drC(1) = delZ(1) * 0.5 _d 0
36 rC(1) = -delZ(1) * 0.5 _d 0
37 DO K=2,Nr
38 drC(K) = 0.5 _d 0 *(delZ(K-1)+delZ(K))
39 rC(K) = rC(K-1) - drC(K)
40 ENDDO
41 DO K=1,Nr
42 saFac(K) = 1. D0
43 recip_drC(K) = 1. _d 0/drC(K)
44 recip_drF(K) = 1. _d 0/drF(K)
45 ENDDO
46 C
47 RETURN
48 END

  ViewVC Help
Powered by ViewVC 1.1.22