/[MITgcm]/MITgcm/pkg/mom_fluxform/mom_u_coriolis_nh.F
ViewVC logotype

Contents of /MITgcm/pkg/mom_fluxform/mom_u_coriolis_nh.F

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


Revision 1.3 - (show annotations) (download)
Wed Oct 15 22:53:55 2003 UTC (20 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57t_post, checkpoint51k_post, checkpoint53f_post, checkpoint54a_pre, checkpoint55c_post, checkpoint53b_pre, checkpoint51l_post, checkpoint57m_post, checkpoint52l_pre, checkpoint52e_pre, hrcube4, hrcube5, checkpoint57v_post, checkpoint57g_pre, checkpoint52j_post, checkpoint51o_pre, checkpoint57f_post, checkpoint52e_post, checkpoint57s_post, checkpoint51n_pre, checkpoint57j_post, checkpoint58b_post, checkpoint57b_post, checkpoint52d_pre, checkpoint53c_post, checkpoint53d_post, checkpoint57f_pre, checkpoint55d_pre, checkpoint57g_post, checkpoint57a_post, checkpoint55j_post, checkpoint56b_post, checkpoint57h_pre, checkpoint57y_post, checkpoint57x_post, checkpoint52j_pre, checkpoint54a_post, branch-netcdf, checkpoint55h_post, checkpoint51r_post, checkpoint52b_pre, checkpoint52n_post, checkpoint54b_post, checkpoint57e_post, checkpoint54d_post, checkpoint56c_post, checkpoint54e_post, checkpoint55b_post, checkpoint57h_post, checkpoint51l_pre, checkpoint52m_post, checkpoint57y_pre, checkpoint55, checkpoint53a_post, checkpoint55a_post, checkpoint57c_pre, checkpoint53b_post, checkpoint57o_post, checkpoint55g_post, checkpoint57r_post, checkpoint51o_post, checkpoint57k_post, checkpoint57d_post, checkpoint55f_post, checkpoint57i_post, checkpoint51q_post, checkpoint52l_post, checkpoint52k_post, checkpoint58, checkpoint57a_pre, checkpoint54, checkpoint57, checkpoint56, checkpoint53, checkpoint52, checkpoint52d_post, checkpoint52a_post, checkpoint57h_done, checkpoint52b_post, checkpoint53g_post, checkpoint52f_post, checkpoint57n_post, checkpoint52c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint58a_post, checkpoint57q_post, ecco_c52_e35, checkpoint57z_post, checkpoint54f_post, eckpoint57e_pre, checkpoint58c_post, checkpoint57c_post, checkpoint52a_pre, checkpoint51m_post, checkpoint51t_post, checkpoint53d_pre, checkpoint55e_post, checkpoint54c_post, checkpoint52i_post, checkpoint51p_post, checkpoint51n_post, checkpoint55i_post, checkpoint57l_post, checkpoint52i_pre, checkpoint51u_post, checkpoint52h_pre, checkpoint52f_pre, hrcube_1, hrcube_2, hrcube_3, checkpoint56a_post, checkpoint51s_post, checkpoint55d_post
Branch point for: netcdf-sm0, branch-nonh, tg2-branch, checkpoint51n_branch
Changes since 1.2: +2 -2 lines
* reverse gravitySign back to "logical" value: +1 when R increases downward

1 C $Header: /u/gcmpack/MITgcm/pkg/mom_fluxform/mom_u_coriolis_nh.F,v 1.2 2003/10/09 04:19:20 edhill Exp $
2 C $Name: $
3
4 #include "MOM_FLUXFORM_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: MOM_U_CORIOLIS
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_U_CORIOLIS_NH(
11 I bi,bj,k,wFld,
12 U uCoriolisTerm,
13 I myThid)
14
15 C !DESCRIPTION:
16 C Calculates the horizontal Coriolis term in the zonal equation:
17 C \begin{equation*}
18 C \overline{f}^i \overline{v}^{ij}
19 C \end{equation*}
20
21 C !USES: ===============================================================
22 IMPLICIT NONE
23 #include "SIZE.h"
24 #include "EEPARAMS.h"
25 #include "PARAMS.h"
26 #include "GRID.h"
27
28 C !INPUT PARAMETERS: ===================================================
29 C bi,bj :: tile indices
30 C k :: vertical level
31 C wFld :: vertical flow
32 C myThid :: thread number
33 INTEGER bi,bj,K
34 _RL wFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
35 INTEGER myThid
36
37 C !OUTPUT PARAMETERS: ==================================================
38 C uCoriolisTerm :: Coriolis term
39 _RL uCoriolisTerm(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
40
41 C !LOCAL VARIABLES: ====================================================
42 C i,j :: loop indices
43 INTEGER i,j,kp1
44 _RL wMsk
45 CEOP
46
47
48 kp1=min(k+1,Nr)
49 wMsk=1.
50 IF (k.EQ.Nr) wMsk=0.
51
52 C Energy conserving discretization of 2*Omega*cos(phi)*w
53 DO j=1-Oly,sNy+Oly-1
54 DO i=1-Olx+1,sNx+Olx
55 uCoriolisTerm(i,j) =
56 & 0.5*( fCoriCos( i ,j,bi,bj)
57 & *0.5*( wFld( i ,j,k,bi,bj)+wFld( i ,j,kp1,bi,bj)*wMsk )
58 & + fCoriCos(i-1,j,bi,bj)
59 & *0.5*( wFld(i-1,j,k,bi,bj)+wFld(i-1,j,kp1,bi,bj)*wMsk ) )
60 & *gravitySign*recip_horiVertRatio
61 ENDDO
62 ENDDO
63
64 RETURN
65 END

  ViewVC Help
Powered by ViewVC 1.1.22