/[MITgcm]/MITgcm/verification/aim.5l_cs/code/mom_vi_v_coriolis.F
ViewVC logotype

Annotation of /MITgcm/verification/aim.5l_cs/code/mom_vi_v_coriolis.F

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


Revision 1.1.4.1 - (hide annotations) (download)
Tue Feb 26 16:05:07 2002 UTC (22 years, 2 months ago) by adcroft
Branch: release1
CVS Tags: release1_p12, release1_p13, release1_p10, release1_p16, release1_p17, release1_p14, release1_p15, release1_p13_pre, release1_p12_pre, release1_p11, release1_p8, release1_p9, release1_p2, release1_p3, release1_p4, release1_p6, release1_p7, release1_p1, release1_p5, release1_chkpt44d_post
Branch point for: release1_50yr
Changes since 1.1: +2 -2 lines
Merging changes on MAIN between checkpoint43 and checkpoint43a-release1mods
Command: cvs -q update -jcheckpoint43 -jcheckpoint43a-release1mods -d -P

These changes are most of the changes between c43 and c44 except those
that occured after "12:45 11 Jan 2002". As far as I can tell it is
checkpoint43 with the following mods:

  o fix bug in mom_vi_del2uv
  o select when filters are applied ; add options to zonal_filter (data.zonfilt)  o gmredi: fix Pb in the adiabatic form ; add options (.e.g. Bolus advection)
  o update AIM experiments (NCEP input files)
  o improve and extend diagnostics (Monitor, TimeAve with NonLin-FrSurf)
  o added some stuff for AD
  o Jamar wet-points

This update does not contain the following mods that are in checkpoint44

  o bug fix in pkg/generic_advdiff/
    - thread related bug, bi,bj arguments in vertical advection routines
  o some changes to pkg/autodiff, pkg/cost, pkg/exf, pkg/ecco,
    verification/carbon and model/src/ related to adjoint
  o some new Matlab scripts for diagnosing model density
    - utils/matlab/dens_poly3.m and ini_poly3.m

The list of exclusions is accurate based on a "cvs diff". The list of
inclusions is based on the record in doc/tag-index which may not be complete.

1 adcroft 1.1.4.1 C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/verification/aim.5l_cs/code/Attic/mom_vi_v_coriolis.F,v 1.1.4.1 2002/02/26 16:05:07 adcroft Exp $
2     C $Name: $
3 jmc 1.1
4     #include "CPP_OPTIONS.h"
5    
6     SUBROUTINE MOM_VI_V_CORIOLIS(
7     I bi,bj,K,
8     I uFld,omega3,hFacZ,r_hFacZ,
9     O vCoriolisTerm,
10     I myThid)
11     IMPLICIT NONE
12     C /==========================================================\
13     C | S/R MOM_VI_V_CORIOLIS |
14     C |==========================================================|
15     C \==========================================================/
16    
17     C == Global variables ==
18     #include "SIZE.h"
19     #include "EEPARAMS.h"
20     #include "GRID.h"
21     #include "PARAMS.h"
22    
23     C == Routine arguments ==
24     INTEGER bi,bj,K
25     _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
26     _RL omega3(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
27     _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
28     _RS r_hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
29     _RL vCoriolisTerm(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
30     INTEGER myThid
31    
32     C == Local variables ==
33     INTEGER I,J
34     _RL uBarXY,vort3v
35     LOGICAL upwindVort3
36     _RS epsil
37    
38     epsil = 1. _d -9
39     upwindVort3=.FALSE.
40    
41     DO J=2-Oly,sNy+Oly
42     DO I=1-Olx,sNx+Olx-1
43     c uBarXY=0.25*( uFld(i, j )+uFld(i+1, j )
44     c & +uFld(i,j-1)+uFld(i+1,j-1))
45     c uBarXY=0.25*(
46     c & uFld( i , j )*dyG( i , j ,bi,bj)*hFacW( i , j ,k,bi,bj)
47     c & +uFld( i ,j-1)*dyG( i ,j-1,bi,bj)*hFacW( i ,j-1,k,bi,bj)
48     c & +uFld(i+1, j )*dyG(i+1, j ,bi,bj)*hFacW(i+1, j ,k,bi,bj)
49     c & +uFld(i+1,j-1)*dyG(i+1,j-1,bi,bj)*hFacW(i+1,j-1,k,bi,bj))
50     uBarXY=0.5*(
51     & uFld( i , j )*dyG( i , j ,bi,bj)*hFacZ(i,j)
52     & +uFld( i ,j-1)*dyG( i ,j-1,bi,bj)*hFacZ(i,j)
53     & +uFld(i+1, j )*dyG(i+1, j ,bi,bj)*hFacZ(i+1,j)
54     & +uFld(i+1,j-1)*dyG(i+1,j-1,bi,bj)*hFacZ(i+1,j)
55     & )/MAX( epsil, hFacZ(i,j)+hFacZ(i+1,j) )
56     IF (upwindVort3) THEN
57     IF (uBarXY.GT.0.) THEN
58     c vort3v=omega3(i,j)*r_hFacZ(i,j)
59     vort3v=omega3(i,j)
60     ELSE
61     c vort3v=omega3(i+1,j)*r_hFacZ(i+1,j)
62     vort3v=omega3(i+1,j)
63     ENDIF
64     ELSE
65     c vort3v=0.5*(omega3(i,j)*r_hFacZ(i,j)
66     c & +omega3(i+1,j)*r_hFacZ(i+1,j))
67     vort3v=0.5*(omega3(i,j)+omega3(i+1,j))
68     ENDIF
69     vCoriolisTerm(i,j)=
70     & -vort3v*uBarXY*recip_dyC(i,j,bi,bj)*_maskS(i,j,k,bi,bj)
71     C high order vorticity advection term
72     c & ...
73     C linear Coriolis term
74     c & -0.5 *(fCoriG(I,J,bi,bj)+fCoriG(I+1,J,bi,bj))*uBarXY
75     C full nonlinear Coriolis term
76     c & -0.5*(omega3(I,J)+omega3(I+1,J))*uBarXY
77     C correct energy conserving form of Coriolis term
78     c & -0.5 *( fCori(I,J ,bi,bj)*uBarX(I,J ,K,bi,bj) +
79     c & fCori(I,J-1,bi,bj)*uBarX(I,J-1,K,bi,bj) )
80     C original form of Coriolis term (copied from calc_mom_rhs)
81     c & -0.5*(fCori(i,j,bi,bj)+fCori(i,j-1,bi,bj))*uBarXY
82     ENDDO
83     ENDDO
84    
85     RETURN
86     END

  ViewVC Help
Powered by ViewVC 1.1.22