C $Header: /u/gcmpack/MITgcm/pkg/atm_ocn_coupler/cpl_send_atm_cplparms.F,v 1.1 2015/11/12 00:49:04 jmc Exp $
C $Name: $
#include "CPP_OPTIONS.h"
CBOP 0
C !ROUTINE: CPL_SEND_ATM_CPLPARMS
C !INTERFACE:
SUBROUTINE CPL_SEND_ATM_CPLPARMS( msgUnit )
C !DESCRIPTION:
C *==========================================================*
C | SUBROUTINE CPL_SEND_ATM_CPLPARMS
C | o Routine for sending coupler-parameters
C | to atmos component
C *==========================================================*
C *==========================================================*
C !USES:
IMPLICIT NONE
C == Global variables ==
#include "CPL_PARAMS.h"
#include "ATMIDS.h"
C !INPUT/OUTPUT PARAMETERS:
C msgUnit :: log-file I/O unit
INTEGER msgUnit
C !LOCAL VARIABLES:
C i :: Loop counter
C parBuf :: local buffer to send coupler-params
INTEGER i
INTEGER parBuf(atmParSize)
CEOP
C- Initialise buffer
DO i=1,atmParSize
parBuf(i) = 0
ENDDO
C- Send exchange field selectors (coupler config) to atmos. component
IF ( atmParSize.EQ.6 ) THEN
parBuf(1) = cpl_sequential
parBuf(2) = cpl_exchange_RunOff
parBuf(3) = cpl_exchange1W_sIce
parBuf(4) = cpl_exchange2W_sIce
parBuf(5) = cpl_exchange_SaltPl
parBuf(6) = cpl_exchange_DIC
ELSE
C- If not using an up-to-date ATMIDS.h with the wrong atmParSize
cplErrorCount = cplErrorCount + 1
WRITE(msgUnit,'(2A,I4,A)')
& ' *** ERROR *** CPL_SEND_ATM_CPLPARMS: ',
& 'atmParSize=', atmParSize, ' is wrong (expect 6)'
WRITE(msgUnit,'(2A,I4,A)')
& ' *** ERROR *** CPL_SEND_ATM_CPLPARMS: ',
& '==> set ErrorCount=', cplErrorCount, ' (Fatal)'
ENDIF
CALL COUPSEND_I4VEC(
I atmCompName, atmCplParamsName, atmParSize,
I parBuf )
RETURN
END