| 1 |
C $Header$ |
C $Header$ |
| 2 |
C $Name$ |
C $Name$ |
| 3 |
|
|
| 4 |
|
#include "PACKAGES_CONFIG.h" |
| 5 |
#include "CPP_OPTIONS.h" |
#include "CPP_OPTIONS.h" |
| 6 |
|
|
| 7 |
CBOP |
CBOP |
| 10 |
SUBROUTINE INI_SALT ( myThid ) |
SUBROUTINE INI_SALT ( myThid ) |
| 11 |
C !DESCRIPTION: \bv |
C !DESCRIPTION: \bv |
| 12 |
C *==========================================================* |
C *==========================================================* |
| 13 |
C | SUBROUTINE INI_SALT |
C | SUBROUTINE INI_SALT |
| 14 |
C | o Set model initial salinity field. |
C | o Set model initial salinity field. |
| 15 |
C *==========================================================* |
C *==========================================================* |
| 16 |
C | There are several options for setting the initial |
C | There are several options for setting the initial |
| 17 |
C | temperature file |
C | temperature file |
| 18 |
C | 1. Inline code |
C | 1. Inline code |
| 19 |
C | 2. Vertical profile ( uniform S in X and Y ) |
C | 2. Vertical profile ( uniform S in X and Y ) |
| 20 |
C | 3. Three-dimensional data from a file. For example from |
C | 3. Three-dimensional data from a file. For example from |
| 21 |
C | Levitus or from a checkpoint file from a previous |
C | Levitus or from a checkpoint file from a previous |
| 22 |
C | integration. |
C | integration. |
| 23 |
C | In addition to setting the salinity field we also |
C | In addition to setting the salinity field we also |
| 24 |
C | set the initial salinity tendency term here. |
C | set the initial salinity tendency term here. |
| 25 |
C *==========================================================* |
C *==========================================================* |
| 26 |
C \ev |
C \ev |
| 27 |
|
|
| 33 |
#include "PARAMS.h" |
#include "PARAMS.h" |
| 34 |
#include "GRID.h" |
#include "GRID.h" |
| 35 |
#include "DYNVARS.h" |
#include "DYNVARS.h" |
| 36 |
|
#ifdef ALLOW_MNC |
| 37 |
|
#include "MNC_PARAMS.h" |
| 38 |
|
#endif |
| 39 |
|
|
| 40 |
C !INPUT/OUTPUT PARAMETERS: |
C !INPUT/OUTPUT PARAMETERS: |
| 41 |
C == Routine arguments == |
C == Routine arguments == |
| 42 |
C myThid - Number of this instance of INI_SALT |
C myThid :: Number of this instance of INI_SALT |
| 43 |
INTEGER myThid |
INTEGER myThid |
| 44 |
|
|
| 45 |
C !LOCAL VARIABLES: |
C !LOCAL VARIABLES: |
| 46 |
C == Local variables == |
C == Local variables == |
| 47 |
C bi,bj - Loop counters |
C bi,bj :: Tile indices |
| 48 |
C I,J,K |
C i,j,k :: Loop counters |
| 49 |
INTEGER bi, bj |
INTEGER bi, bj |
| 50 |
INTEGER I, J, K, localWarnings |
INTEGER i, j, k, localWarnings |
| 51 |
CHARACTER*(MAX_LEN_MBUF) msgBuf |
CHARACTER*(MAX_LEN_MBUF) msgBuf |
| 52 |
CEOP |
CEOP |
| 53 |
|
|
| 54 |
C-- Initialise salinity field to the vertical reference profile |
C-- Initialise salinity field to the vertical reference profile |
| 55 |
DO bj = myByLo(myThid), myByHi(myThid) |
DO bj = myByLo(myThid), myByHi(myThid) |
| 56 |
DO bi = myBxLo(myThid), myBxHi(myThid) |
DO bi = myBxLo(myThid), myBxHi(myThid) |
| 57 |
DO K=1,Nr |
DO k=1,Nr |
| 58 |
DO J=1-Oly,sNy+Oly |
DO j=1-Oly,sNy+Oly |
| 59 |
DO I=1-Olx,sNx+Olx |
DO i=1-Olx,sNx+Olx |
| 60 |
salt(I,J,K,bi,bj) = sRef(K) |
salt(i,j,k,bi,bj) = sRef(k) |
| 61 |
ENDDO |
ENDDO |
| 62 |
ENDDO |
ENDDO |
| 63 |
ENDDO |
ENDDO |
| 64 |
ENDDO |
ENDDO |
| 65 |
ENDDO |
ENDDO |
|
_BARRIER |
|
| 66 |
|
|
| 67 |
IF ( hydrogSaltFile .NE. ' ' ) THEN |
IF ( hydrogSaltFile .NE. ' ' ) THEN |
| 68 |
_BEGIN_MASTER( myThid ) |
#ifdef ALLOW_MNC |
| 69 |
CALL READ_FLD_XYZ_RL( hydrogSaltFile, ' ', salt, 0, myThid ) |
IF ( useMNC.AND.mnc_read_salt ) THEN |
| 70 |
_END_MASTER(myThid) |
CALL MNC_FILE_CLOSE_ALL_MATCHING(hydrogSaltFile, myThid) |
| 71 |
_EXCH_XYZ_R8(salt , myThid ) |
CALL MNC_CW_SET_UDIM(hydrogSaltFile, 1, myThid) |
| 72 |
|
CALL MNC_CW_SET_CITER(hydrogSaltFile, 2, -1, -1, -1, myThid) |
| 73 |
|
CALL MNC_CW_SET_UDIM(hydrogSaltFile, 1, myThid) |
| 74 |
|
CALL MNC_CW_RL_R('D',hydrogSaltFile,0,0,'S',salt, myThid) |
| 75 |
|
CALL MNC_FILE_CLOSE_ALL_MATCHING(hydrogSaltFile, myThid) |
| 76 |
|
ELSE |
| 77 |
|
#endif /* ALLOW_MNC */ |
| 78 |
|
CALL READ_FLD_XYZ_RL( hydrogSaltFile, ' ', salt, 0, myThid ) |
| 79 |
|
#ifdef ALLOW_MNC |
| 80 |
|
ENDIF |
| 81 |
|
#endif /* ALLOW_MNC */ |
| 82 |
|
_EXCH_XYZ_RL(salt , myThid ) |
| 83 |
ENDIF |
ENDIF |
| 84 |
|
|
| 85 |
C Apply mask and test consistancy |
C Apply mask and test consistancy |
| 86 |
localWarnings=0 |
localWarnings=0 |
| 87 |
DO bj = myByLo(myThid), myByHi(myThid) |
DO bj = myByLo(myThid), myByHi(myThid) |
| 88 |
DO bi = myBxLo(myThid), myBxHi(myThid) |
DO bi = myBxLo(myThid), myBxHi(myThid) |
| 89 |
DO K=1,Nr |
DO k=1,Nr |
| 90 |
DO J=1-Oly,sNy+Oly |
IF ( maskIniSalt ) THEN |
| 91 |
DO I=1-Olx,sNx+Olx |
DO j=1-Oly,sNy+Oly |
| 92 |
IF (maskC(I,J,K,bi,bj).EQ.0.) salt(I,J,K,bi,bj) = 0. |
DO i=1-Olx,sNx+Olx |
| 93 |
|
IF (maskC(i,j,k,bi,bj).EQ.0.) salt(i,j,k,bi,bj) = 0. |
| 94 |
|
ENDDO |
| 95 |
ENDDO |
ENDDO |
| 96 |
ENDDO |
ENDIF |
| 97 |
IF ( sRef(k).NE.0. ) THEN |
IF ( sRef(k).NE.0. ) THEN |
| 98 |
DO J=1,sNy |
DO j=1,sNy |
| 99 |
DO I=1,sNx |
DO i=1,sNx |
| 100 |
IF ( maskC(I,J,K,bi,bj).NE.0. |
IF ( maskC(i,j,k,bi,bj).NE.0. |
| 101 |
& .AND. salt(I,J,K,bi,bj).EQ.0. ) THEN |
& .AND. salt(i,j,k,bi,bj).EQ.0. ) THEN |
| 102 |
localWarnings=localWarnings+1 |
localWarnings=localWarnings+1 |
| 103 |
ENDIF |
ENDIF |
| 104 |
ENDDO |
ENDDO |
| 107 |
ENDDO |
ENDDO |
| 108 |
ENDDO |
ENDDO |
| 109 |
ENDDO |
ENDDO |
| 110 |
IF (localWarnings.NE.0) THEN |
IF ( localWarnings.NE.0 ) THEN |
| 111 |
WRITE(msgBuf,'(A,A)') |
IF ( checkIniSalt ) THEN |
| 112 |
& 'S/R INI_SALT: salt = 0 identically. If this is intentional', |
WRITE(msgBuf,'(A,I10,A)') |
| 113 |
& 'you will need to edit ini_salt.F to avoid this safety check' |
& ' INI_SALT: found', localWarnings, |
| 114 |
CALL PRINT_ERROR( msgBuf , myThid) |
& ' wet grid-pts with salt=0 identically.' |
| 115 |
STOP 'ABNORMAL END: S/R INI_SALT' |
CALL PRINT_ERROR( msgBuf , myThid) |
| 116 |
|
WRITE(msgBuf,'(A,A)') |
| 117 |
|
& ' If this is intentional, you need to', |
| 118 |
|
& ' set checkIniSalt=.false. in "data", namelist PARM05' |
| 119 |
|
CALL PRINT_ERROR( msgBuf , myThid) |
| 120 |
|
STOP 'ABNORMAL END: S/R INI_SALT' |
| 121 |
|
ELSE |
| 122 |
|
WRITE(msgBuf,'(A,I10,A)') |
| 123 |
|
& '** WARNINGS ** INI_SALT: found', localWarnings, |
| 124 |
|
& ' wet grid-pts with salt=0 identically.' |
| 125 |
|
CALL PRINT_MESSAGE( msgBuf, errorMessageUnit, |
| 126 |
|
& SQUEEZE_RIGHT, myThid ) |
| 127 |
|
ENDIF |
| 128 |
ENDIF |
ENDIF |
| 129 |
|
|
| 130 |
CALL PLOT_FIELD_XYZRL( salt, 'Initial Salinity' , Nr, 1, myThid ) |
IF (debugMode) THEN |
| 131 |
|
CALL PLOT_FIELD_XYZRL( salt, 'Initial Salinity', |
| 132 |
|
& Nr, 1, myThid ) |
| 133 |
|
ENDIF |
| 134 |
|
|
| 135 |
RETURN |
RETURN |
| 136 |
END |
END |