/[MITgcm]/MITgcm/pkg/mom_vecinv/mom_calc_strain.F
ViewVC logotype

Contents of /MITgcm/pkg/mom_vecinv/mom_calc_strain.F

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


Revision 1.3 - (show annotations) (download)
Tue Nov 27 15:45:06 2001 UTC (22 years, 7 months ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint51k_post, checkpoint47j_post, checkpoint53b_pre, checkpoint48d_pre, checkpoint44b_post, checkpoint51j_post, branch-exfmods-tag, checkpoint47e_post, checkpoint43a-release1mods, checkpoint44h_pre, checkpoint52l_pre, checkpoint52e_pre, hrcube4, hrcube5, checkpoint52j_post, checkpoint47f_post, checkpoint47c_post, checkpoint50e_post, checkpoint52e_post, checkpoint50c_post, checkpoint46i_post, checkpoint51n_pre, checkpoint47d_post, checkpoint44f_pre, checkpoint47a_post, checkpoint46f_post, checkpoint52d_pre, checkpoint47h_post, checkpoint46d_pre, checkpoint48e_post, checkpoint46e_post, checkpoint48h_post, checkpoint48d_post, checkpoint50c_pre, release1-branch_tutorials, checkpoint46c_post, checkpoint44g_post, branchpoint-genmake2, checkpoint46h_pre, checkpoint44h_post, checkpoint44e_post, checkpoint46k_post, checkpoint52j_pre, checkpoint46e_pre, branch-netcdf, checkpoint50d_pre, checkpoint48f_post, checkpoint45d_post, checkpoint51r_post, checkpoint47i_post, checkpoint52b_pre, checkpoint52n_post, checkpoint51o_pre, checkpoint46j_pre, checkpoint45b_post, checkpoint46b_pre, checkpoint51i_post, checkpoint46j_post, checkpoint48c_post, checkpoint46l_post, chkpt44a_pre, release1-branch-end, release1_final_v1, checkpoint51e_post, checkpoint51b_post, checkpoint46, checkpoint51l_pre, checkpoint52m_post, checkpoint51c_post, checkpoint53a_post, checkpoint47d_pre, checkpoint47, checkpoint44, checkpoint48, checkpoint49, checkpoint44f_post, checkpoint47b_post, checkpoint51l_post, checkpoint48i_post, checkpoint51o_post, checkpoint46l_pre, checkpoint51f_pre, checkpoint51q_post, checkpoint52l_post, checkpoint52k_post, chkpt44d_post, checkpoint53b_post, checkpoint51, checkpoint50, checkpoint53, checkpoint52, checkpoint50d_post, checkpoint52d_post, checkpoint46g_pre, checkpoint51b_pre, checkpoint52a_post, checkpoint46a_post, checkpoint47g_post, checkpoint52b_post, chkpt44a_post, checkpoint52f_post, checkpoint44b_pre, checkpoint52c_post, checkpoint46m_post, checkpoint48a_post, checkpoint51h_pre, checkpoint46a_pre, checkpoint50g_post, checkpoint45c_post, checkpoint50b_pre, checkpoint44e_pre, checkpoint51g_post, ecco_c52_e35, checkpoint46b_post, checkpoint51f_post, checkpoint46d_post, checkpoint48b_post, checkpoint50b_post, checkpoint46g_post, checkpoint45a_post, checkpoint50f_post, checkpoint50a_post, checkpoint46c_pre, checkpoint50f_pre, checkpoint52a_pre, checkpoint51d_post, checkpoint48c_pre, release1-branch_branchpoint, checkpoint51m_post, checkpoint51t_post, checkpoint50h_post, checkpoint52i_post, checkpoint51a_post, checkpoint45, checkpoint46h_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51p_post, checkpoint51n_post, checkpoint48g_post, checkpoint51i_pre, chkpt44c_pre, checkpoint52i_pre, checkpoint51u_post, checkpoint52h_pre, checkpoint52f_pre, hrcube_1, hrcube_2, hrcube_3, checkpoint51s_post, chkpt44c_post
Branch point for: netcdf-sm0, branch-genmake2, branch-exfmods-curt, branch-nonh, tg2-branch, release1_final, checkpoint51n_branch, release1-branch
Changes since 1.2: +2 -2 lines
Missing + sign

1 C $Header: /u/gcmpack/models/MITgcmUV/pkg/mom_vecinv/mom_calc_strain.F,v 1.2 2001/11/27 15:39:15 adcroft Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: MOM_CALC_STRAIN
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_CALC_STRAIN(
11 I bi,bj,k,
12 I uFld, vFld, hFacZ,
13 O strain,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the strain of the horizontal flow field (at vorticity points):
18 C \begin{equation*}
19 C D_S = \frac{\Delta y_u}{\Delta x_v} \delta_i \frac{v}{\Delta y_c}
20 C + \frac{\Delta x_v}{\Delta y_u} \delta_j \frac{u}{\Delta x_c}
21 C \end{equation*}
22 C assuming free-slip boundaries.
23
24 C !USES: ===============================================================
25 IMPLICIT NONE
26 #include "SIZE.h"
27 #include "EEPARAMS.h"
28 #include "PARAMS.h"
29 #include "GRID.h"
30
31 C !INPUT PARAMETERS: ===================================================
32 C bi,bj :: tile indices
33 C k :: vertical level
34 C uFld :: zonal flow
35 C vFld :: meridional flow
36 C hFacZ :: open-water thickness at vorticity points
37 C myThid :: thread number
38 INTEGER bi,bj,k
39 _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
40 _RL vFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
41 _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
42 INTEGER myThid
43
44 C !OUTPUT PARAMETERS: ==================================================
45 C strain :: strain of horizontal flow
46 _RL strain(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
47
48 C !LOCAL VARIABLES: ====================================================
49 C i,j :: loop indices
50 INTEGER i,j
51 CEOP
52
53 DO J=2-Oly,sNy+Oly
54 DO I=2-Olx,sNx+Olx
55
56 C Strain of horizontal flow field (ignoring lopping factors)
57 strain(I,J)=
58 & dyu(I,J,bi,bj)*recip_dxv(I,J,bi,bj)*(
59 & vFld( I , J )*recip_dyc( I , J ,bi,bj)
60 & -vFld(I-1, J )*recip_dyc(I-1, J ,bi,bj) )
61 & +dxv(I,J,bi,bj)*recip_dyu(I,J,bi,bj)*(
62 & +uFld( I , J )*recip_dxc( I , J ,bi,bj)
63 & -uFld( I ,J-1)*recip_dxc( I ,J-1,bi,bj) )
64
65 C Set strain to zero on boundaries (free-slip)
66 IF (hFacZ(i,j).EQ.0.) THEN
67 strain(I,J)=0.
68 ENDIF
69
70 ENDDO
71 ENDDO
72
73 C Special stuff for Cubed Sphere
74 IF (useCubedSphereExchange) THEN
75 I=1
76 J=1
77 strain(I,J)=0.
78 I=sNx+1
79 J=1
80 strain(I,J)=0.
81 I=1
82 J=sNy+1
83 strain(I,J)=0.
84 I=sNx+1
85 J=sNy+1
86 strain(I,J)=0.
87 ENDIF
88
89 RETURN
90 END

  ViewVC Help
Powered by ViewVC 1.1.22