/[MITgcm]/MITgcm/pkg/dic/alk_surfforcing.F
ViewVC logotype

Contents of /MITgcm/pkg/dic/alk_surfforcing.F

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


Revision 1.13 - (show annotations) (download)
Sun Apr 11 22:03:53 2010 UTC (14 years, 1 month ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint65, checkpoint63, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62w, checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62z, checkpoint62y, checkpoint62x, HEAD
Changes since 1.12: +2 -2 lines
avoid unused variables.

1 C $Header: /u/gcmpack/MITgcm/pkg/dic/alk_surfforcing.F,v 1.12 2008/04/07 20:31:16 dfer Exp $
2 C $Name: $
3
4 #include "DIC_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: ALK_SURFFORCING
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE ALK_SURFFORCING( PTR_ALK , GALK,
11 I bi,bj,imin,imax,jmin,jmax,
12 I myIter,myTime,myThid)
13
14 C !DESCRIPTION:
15 C Calculate the alkalinity change due to freshwater flux
16 C Update alkalinity tendency term
17
18 C !USES: ===============================================================
19 IMPLICIT NONE
20 #include "SIZE.h"
21 #include "DYNVARS.h"
22 #include "EEPARAMS.h"
23 #include "PARAMS.h"
24 #include "GRID.h"
25 #include "FFIELDS.h"
26 #include "DIC_VARS.h"
27
28 C !INPUT PARAMETERS: ===================================================
29 C myThid :: thread number
30 C myIter :: current timestep
31 C myTime :: current time
32 C bi,bj :: tile indices
33 C PTR_ALK :: alkalinity field
34 INTEGER myIter, myThid
35 _RL myTime
36 _RL PTR_ALK(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
37 INTEGER iMin,iMax,jMin,jMax, bi, bj
38
39 C !OUTPUT PARAMETERS: ==================================================
40 C GALK :: tendency term of alkalinity
41 _RL GALK(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
42
43 #ifdef ALLOW_PTRACERS
44 #ifdef DIC_BIOTIC
45
46 #ifdef ALLOW_OLD_VIRTUALFLUX
47 C !LOCAL VARIABLES: ====================================================
48 C i,j :: loop indices
49 INTEGER i,j
50 CEOP
51
52 DO j=jmin,jmax
53 DO i=imin,imax
54 IF (maskC(i,j,1,bi,bj).NE.0. _d 0) THEN
55 c calculate virtual flux
56 c EminusPforV = dS/dt*(1/Sglob)
57 C NOTE: Be very careful with signs here!
58 C Positive EminusPforV => loss of water to atmos and increase
59 C in salinity. Thus, also increase in other surface tracers
60 C (i.e. positive virtual flux into surface layer)
61 GALK(i,j)=gsm_ALK*surfaceForcingS(i,j,bi,bj)*
62 & recip_drF(1)/gsm_S
63 c OR
64 c let virtual flux be zero
65 c GALK(i,j)=0.d0
66 c
67 ELSE
68 GALK(i,j)=0. _d 0
69 ENDIF
70 ENDDO
71 ENDDO
72 #endif /* ALLOW_OLD_VIRTUALFLUX */
73
74 #endif
75 #endif
76 RETURN
77 END

  ViewVC Help
Powered by ViewVC 1.1.22