/[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.9.2.1 - (show annotations) (download)
Thu Jan 18 22:34:09 2001 UTC (23 years, 3 months ago) by jmc
Branch: branch-atmos-merge
CVS Tags: branch-atmos-merge-freeze, branch-atmos-merge-shapiro, branch-atmos-merge-zonalfilt, branch-atmos-merge-phase7
Changes since 1.9: +2 -2 lines
vertical discretization for atmospheric run, with k=1 at the surface:
  add parameter: Ro_SeaLevel = Total pressure at Sea-Level ;
  add flag: groundAtK1 = True if surface(k=1) at lower boundary (ground)
  set horiVertRatio to Gravity*rhoConst ;

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/ini_vertical_grid.F,v 1.9 1999/05/18 17:42:35 adcroft Exp $
2
3 #include "CPP_OPTIONS.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 IMPLICIT NONE
14
15 C === Global variables ===
16 #include "SIZE.h"
17 #include "EEPARAMS.h"
18 #include "PARAMS.h"
19 #include "GRID.h"
20
21 C == Routine arguments ==
22 C myThid - Number of this instance of INI_DEPTHS
23 INTEGER myThid
24 CEndOfInterface
25
26 C == Local variables ==
27 C K
28 INTEGER K
29
30 C Calculate depths of centers and interfaces
31 rF(1) = Ro_SeaLevel
32 DO K=1,Nr
33 drF(K) = delR(K)
34 rF(K+1) = rF(K)-rkFac*delR(K)
35 ENDDO
36 drC(1) = delR(1) * 0.5 _d 0
37 rC(1) = rf(1)-rkFac*delR(1) * 0.5 _d 0
38 DO K=2,Nr
39 drC(K) = 0.5 _d 0 *(delR(K-1)+delR(K))
40 rC(K) = rC(K-1) - rkFac*drC(K)
41 ENDDO
42 DO K=1,Nr
43 saFac(K) = 1. _d 0
44 recip_drC(K) = 1. _d 0/drC(K)
45 recip_drF(K) = 1. _d 0/drF(K)
46 ENDDO
47 C
48 RETURN
49 END

  ViewVC Help
Powered by ViewVC 1.1.22