/[MITgcm]/MITgcm_contrib/sannino/GRID_Refinemet/code/ini_salt.F
ViewVC logotype

Annotation of /MITgcm_contrib/sannino/GRID_Refinemet/code/ini_salt.F

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


Revision 1.1 - (hide annotations) (download)
Thu Jul 20 21:08:14 2006 UTC (19 years, 1 month ago) by sannino
Branch: MAIN
CVS Tags: HEAD
o Adding OASIS package
o Adding grid refinement package

1 sannino 1.1 C $Header: /u/gcmpack/MITgcm/model/src/ini_salt.F,v 1.17 2005/11/08 23:01:10 cnh Exp $
2     C $Name: $
3    
4     #include "CPP_OPTIONS.h"
5    
6     CBOP
7     C !ROUTINE: INI_SALT
8     C !INTERFACE:
9     SUBROUTINE INI_SALT ( myThid )
10     C !DESCRIPTION: \bv
11     C *==========================================================*
12     C | SUBROUTINE INI_SALT
13     C | o Set model initial salinity 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 S 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 salinity field we also
23     C | set the initial salinity 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_SALT
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     CHARACTER*(MAX_LEN_MBUF) msgBuf
48     CEOP
49    
50     C-- Initialise salinity field to the vertical reference profile
51     DO bj = myByLo(myThid), myByHi(myThid)
52     DO bi = myBxLo(myThid), myBxHi(myThid)
53     DO K=1,Nr
54     DO J=1-Oly,sNy+Oly
55     DO I=1-Olx,sNx+Olx
56     salt(I,J,K,bi,bj) = sRef(K)
57     ENDDO
58     ENDDO
59     ENDDO
60     ENDDO
61     ENDDO
62     _BARRIER
63    
64     IF ( hydrogSaltFile .NE. ' ' ) THEN
65     C _BEGIN_MASTER( myThid )
66     CALL READ_FLD_XYZ_RL( hydrogSaltFile, ' ', salt, 0, myThid )
67     C _END_MASTER(myThid)
68     _EXCH_XYZ_R8(salt , myThid )
69     ENDIF
70    
71     cgmNESTING(schifezza
72     #ifdef ALLOW_NESTING_SON
73     #ifndef ALLOW_USE_MPI
74     DO I = -2,0
75     salt(I,:,:,:,:) = salt(1,:,:,:,:)
76     ENDDO
77     #endif
78     #endif
79     cgmNESTING(schifezza
80    
81     C Apply mask and test consistancy
82     localWarnings=0
83     DO bj = myByLo(myThid), myByHi(myThid)
84     DO bi = myBxLo(myThid), myBxHi(myThid)
85     DO K=1,Nr
86     DO J=1-Oly,sNy+Oly
87     DO I=1-Olx,sNx+Olx
88     IF (maskC(I,J,K,bi,bj).EQ.0.) salt(I,J,K,bi,bj) = 0.
89     ENDDO
90     ENDDO
91     IF ( sRef(k).NE.0. ) THEN
92     DO J=1,sNy
93     DO I=1,sNx
94     IF ( maskC(I,J,K,bi,bj).NE.0.
95     & .AND. salt(I,J,K,bi,bj).EQ.0. ) THEN
96     localWarnings=localWarnings+1
97     ENDIF
98     ENDDO
99     ENDDO
100     ENDIF
101     ENDDO
102     ENDDO
103     ENDDO
104     IF (localWarnings.NE.0) THEN
105     WRITE(msgBuf,'(A,A)')
106     & 'S/R INI_SALT: salt = 0 identically. If this is intentional',
107     & 'you will need to edit ini_salt.F to avoid this safety check'
108     CALL PRINT_ERROR( msgBuf , myThid)
109     STOP 'ABNORMAL END: S/R INI_SALT'
110     ENDIF
111    
112     CALL PLOT_FIELD_XYZRL( salt, 'Initial Salinity' , Nr, 1, myThid )
113    
114     RETURN
115     END

  ViewVC Help
Powered by ViewVC 1.1.22