1 |
sannino |
1.1 |
C $Header: /u/gcmpack/MITgcm/model/src/ini_theta.F,v 1.23 2005/11/08 23:01:10 cnh Exp $ |
2 |
|
|
C $Name: $ |
3 |
|
|
|
4 |
|
|
#include "CPP_OPTIONS.h" |
5 |
|
|
|
6 |
|
|
CBOP |
7 |
|
|
C !ROUTINE: INI_THETA |
8 |
|
|
C !INTERFACE: |
9 |
|
|
SUBROUTINE INI_THETA( myThid ) |
10 |
|
|
C !DESCRIPTION: \bv |
11 |
|
|
C *==========================================================* |
12 |
|
|
C | SUBROUTINE INI_THETA |
13 |
|
|
C | o Set model initial temperature field. |
14 |
|
|
C *==========================================================* |
15 |
|
|
C | There are several options for setting the initial |
16 |
|
|
C | temperature file |
17 |
|
|
C | 1. Inline code |
18 |
|
|
C | 2. Vertical profile ( uniform T in X and Y ) |
19 |
|
|
C | 3. Three-dimensional data from a file. For example from |
20 |
|
|
C | Levitus or from a checkpoint file from a previous |
21 |
|
|
C | integration. |
22 |
|
|
C | In addition to setting the temperature field we also |
23 |
|
|
C | set the initial temperature tendency term here. |
24 |
|
|
C *==========================================================* |
25 |
|
|
C \ev |
26 |
|
|
|
27 |
|
|
C !USES: |
28 |
|
|
IMPLICIT NONE |
29 |
|
|
C === Global variables === |
30 |
|
|
#include "SIZE.h" |
31 |
|
|
#include "EEPARAMS.h" |
32 |
|
|
#include "PARAMS.h" |
33 |
|
|
#include "GRID.h" |
34 |
|
|
#include "DYNVARS.h" |
35 |
|
|
|
36 |
|
|
C !INPUT/OUTPUT PARAMETERS: |
37 |
|
|
C == Routine arguments == |
38 |
|
|
C myThid - Number of this instance of INI_THETA |
39 |
|
|
INTEGER myThid |
40 |
|
|
|
41 |
|
|
C !LOCAL VARIABLES: |
42 |
|
|
C == Local variables == |
43 |
|
|
C bi,bj - Loop counters |
44 |
|
|
C I,J,K |
45 |
|
|
INTEGER bi, bj |
46 |
|
|
INTEGER I, J, K, localWarnings |
47 |
|
|
_RL Tfreezing |
48 |
|
|
CHARACTER*(MAX_LEN_MBUF) msgBuf |
49 |
|
|
CEOP |
50 |
|
|
|
51 |
|
|
C-- Initialise temperature field to the vertical reference profile |
52 |
|
|
DO bj = myByLo(myThid), myByHi(myThid) |
53 |
|
|
DO bi = myBxLo(myThid), myBxHi(myThid) |
54 |
|
|
DO K=1,Nr |
55 |
|
|
DO J=1-Oly,sNy+Oly |
56 |
|
|
DO I=1-Olx,sNx+Olx |
57 |
|
|
theta(I,J,K,bi,bj) = tRef(K) |
58 |
|
|
ENDDO |
59 |
|
|
ENDDO |
60 |
|
|
ENDDO |
61 |
|
|
ENDDO |
62 |
|
|
ENDDO |
63 |
|
|
_BARRIER |
64 |
|
|
|
65 |
|
|
IF ( hydrogThetaFile .NE. ' ' ) THEN |
66 |
|
|
C _BEGIN_MASTER( myThid ) |
67 |
|
|
CALL READ_FLD_XYZ_RL( hydrogThetaFile, ' ', theta, 0, myThid ) |
68 |
|
|
C _END_MASTER(myThid) |
69 |
|
|
_EXCH_XYZ_R8(theta,myThid) |
70 |
|
|
ENDIF |
71 |
|
|
|
72 |
|
|
cgmNESTING schifezza( |
73 |
|
|
#ifdef ALLOW_NESTING_SON |
74 |
|
|
#ifndef ALLOW_USE_MPI |
75 |
|
|
DO I = -2,0 |
76 |
|
|
theta(I,:,:,:,:) = theta(1,:,:,:,:) |
77 |
|
|
ENDDO |
78 |
|
|
#endif |
79 |
|
|
#endif |
80 |
|
|
cgmNESTING schifezza) |
81 |
|
|
|
82 |
|
|
C-- Apply mask and test consistency |
83 |
|
|
localWarnings=0 |
84 |
|
|
DO bj = myByLo(myThid), myByHi(myThid) |
85 |
|
|
DO bi = myBxLo(myThid), myBxHi(myThid) |
86 |
|
|
DO K=1,Nr |
87 |
|
|
DO J=1-Oly,sNy+Oly |
88 |
|
|
DO I=1-Olx,sNx+Olx |
89 |
|
|
IF (maskC(I,J,K,bi,bj).EQ.0.) theta(I,J,K,bi,bj) = 0. |
90 |
|
|
ENDDO |
91 |
|
|
ENDDO |
92 |
|
|
IF ( tRef(k).NE.0. ) THEN |
93 |
|
|
DO J=1,sNy |
94 |
|
|
DO I=1,sNx |
95 |
|
|
IF ( maskC(I,J,K,bi,bj).NE.0. |
96 |
|
|
& .AND. theta(I,J,K,bi,bj).EQ.0. ) THEN |
97 |
|
|
localWarnings=localWarnings+1 |
98 |
|
|
ENDIF |
99 |
|
|
ENDDO |
100 |
|
|
ENDDO |
101 |
|
|
ENDIF |
102 |
|
|
ENDDO |
103 |
|
|
ENDDO |
104 |
|
|
ENDDO |
105 |
|
|
IF (localWarnings.NE.0) THEN |
106 |
|
|
WRITE(msgBuf,'(A,A)') |
107 |
|
|
& 'S/R INI_THETA: theta = 0 identically. If this is intentional', |
108 |
|
|
& 'you will need to edit ini_theta.F to avoid this safety check' |
109 |
|
|
CALL PRINT_ERROR( msgBuf , myThid) |
110 |
|
|
STOP 'ABNORMAL END: S/R INI_THETA' |
111 |
|
|
ENDIF |
112 |
|
|
|
113 |
|
|
C-- Check that there are no values of temperature below freezing point. |
114 |
|
|
Tfreezing=-1.9 _d 0 |
115 |
|
|
IF ( allowFreezing ) THEN |
116 |
|
|
DO bj = myByLo(myThid), myByHi(myThid) |
117 |
|
|
DO bi = myBxLo(myThid), myBxHi(myThid) |
118 |
|
|
DO K=1,Nr |
119 |
|
|
DO J=1-Oly,sNy+Oly |
120 |
|
|
DO I=1-Olx,sNx+Olx |
121 |
|
|
IF (theta(I,J,k,bi,bj) .LT. Tfreezing) THEN |
122 |
|
|
theta(I,J,K,bi,bj) = Tfreezing |
123 |
|
|
ENDIF |
124 |
|
|
ENDDO |
125 |
|
|
ENDDO |
126 |
|
|
ENDDO |
127 |
|
|
ENDDO |
128 |
|
|
ENDDO |
129 |
|
|
ENDIF |
130 |
|
|
|
131 |
|
|
CALL PLOT_FIELD_XYZRL( theta, 'Initial Temperature' , |
132 |
|
|
& Nr, 1, myThid ) |
133 |
|
|
|
134 |
|
|
RETURN |
135 |
|
|
END |