/[MITgcm]/MITgcm_contrib/atnguyen/code_21Dec2012_saltplume/SALT_PLUME.h
ViewVC logotype

Contents of /MITgcm_contrib/atnguyen/code_21Dec2012_saltplume/SALT_PLUME.h

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


Revision 1.2 - (show annotations) (download)
Tue Apr 22 04:32:26 2014 UTC (11 years, 2 months ago) by atn
Branch: MAIN
Changes since 1.1: +14 -8 lines
File MIME type: text/plain
in progress:
1. sort out bi,bj loop
2. skip remove saltplumeflux in external_forcing_surf, (thus) skip kpp
3. move saltplume outside k-loop in [salt,temp]_integrate.F
4. add diagnostics

1 C $Header: /u/gcmpack/MITgcm_contrib/atnguyen/code_21Dec2012_saltplume/SALT_PLUME.h,v 1.1 2014/04/20 04:03:07 atn Exp $
2 C $Name: $
3
4 #ifdef ALLOW_SALT_PLUME
5
6 C-- SALT_PLUME parameters
7 C Find surface where the potential density (ref.lev=surface) is
8 C larger than surface density plus SaltPlumeCriterion.
9
10 C SaltPlumeSouthernOcean: TRUE = apply salt plume globally
11 C FALSE = apply salt plume in Arctic Ocean only
12 LOGICAL SaltPlumeSouthernOcean
13 COMMON /SALT_PLUME_PARAMS_L/ SaltPlumeSouthernOcean
14
15 C CriterionType: 1=delta_rho, 2=drhodz, default is 1
16 C PlumeMethod: method of distributing salt plume vertically
17 C 1=power, 2=exp, 3=overshoot, 5=dump_at_top, 6=reverse of 1
18 C default is 1
19 C Npower: choices of distributing salt uniformly (0), linear (1),
20 C or higher power (Npower>1); default is 0 when PlumeMethod = 1
21 INTEGER CriterionType, PlumeMethod, Npower
22 COMMON /SALT_PLUME_PARAMS_I/ CriterionType, PlumeMethod, Npower
23
24 C SaltPlumeCriterion
25 C for CriterionType=1, default is 0.4 kg/m^3 of Duffy et al 1999
26 C for CriterionType=2, default is 0.005 kg/m^3/m
27 C SPovershoot: overshooting depth of penetrating salt plume,
28 C so that 1.0 = no-overshoot, 1.2 = 20% overshoot.
29 C default is 1.0
30 C SPsalFRAC: fraction of the salt by-product of seaice growth (not melt) that
31 C will be re-distributed vertically according to the salt_plume_frac.F
32 C Its default is 1. (for 100% effect), and its range is [0. 1.]
33 C SPinflectionPoint: the inflection point of a nonlinear function
34 C f(AREA) controlling saltPlumeFlux. f(AREA) is a logistic curve
35 C (sigmoid) with range [0. 1.] and f(SPinflectionPoint) == 0.5.
36 C Usage: pkg/salt_plume activates when AREA>=SPinflectionPoint.
37 C To assure only narrow leads generate plumes:
38 C set SPinflectionPoint >= 0.8.
39 C SPalpha :: fraction of grid volume designated to be brine, [0. 1.]
40 C If grid cell 18km x 18km x 10m, take SPalpha=0.001 gives
41 C volume of 0.001*drF(1)*[dx*dy] of brine. Thus SPbrineSalt
42 C can be calc as adding SaltPlumeFlux into this fractional vol.
43 C Default: 0.008 -> SPbrineSalt ~37 if SSS is ~32.
44
45 _RL SPsalFRAC, SaltPlumeCriterion, SPovershoot
46 #ifdef SALT_PLUME_IN_LEADS
47 _RL SPinflectionPoint
48 #endif
49 COMMON /SALT_PLUME_PARAMS_R/
50 & SPsalFRAC, SaltPlumeCriterion, SPovershoot
51 #ifdef SALT_PLUME_IN_LEADS
52 & , SPinflectionPoint
53 #endif
54 #ifdef SALT_PLUME_VOLUME
55 & , SPalpha
56 #endif
57 C-- SALT_PLUME 2-dim. fields
58 C SaltPlumeDepth :: depth of penetration of salt plumes
59 C rejected during sea ice growth
60 C saltPlumeFlux :: Net downward salt flux in psu.kg/m^2/s
61 C Note: a) only used when salty sea-ice forms.
62 C b) units: when salinity (unit= psu) is expressed
63 C in g/kg, saltPlumeFlux unit becomes g/m^2/s.
64 C > 0 for increasing in SSS.
65 C Southwest C-grid tracer point
66 C dSPvolSurfDown :: downward volume frac from klev=1 associated w/ saltPlumeFlux
67 C dSPvolfromBelow:: upward volume frac from grid below
68 C dSPvol2Above :: upward volume frac to grid above
69 C SPbrineSalt :: salinity of brine, read in or a function of SPalpha
70 C SPkBottom :: bottom kLev associated with SaltPlumeDepth
71
72 _RL SaltPlumeDepth (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
73 _RL saltPlumeFlux (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
74 #ifdef SALT_PLUME_VOLUME
75 _RL SPbrineSalt (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
76 & ,SPkBottom (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
77 _RL dSPvolSurfDown (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
78 & ,dSPvolfromBelow(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
79 & ,dSPvol2Above (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr+1,nSx,nSy)
80 & ,SPplumek (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr+1,nSx,nSy)
81 #endif /* SALT_PLUME_VOLUME */
82 COMMON /DYNVARS_SALT_PLUME/ SaltPlumeDepth
83 #ifdef SALT_PLUME_VOLUME
84 & ,SPbrineSalt,SPkBottom
85 COMMON /FFIELDS_SaltPlumeVol/
86 & dSPvolSurfDown,dSPvolfromBelow,dSPvol2Above,SPplumek
87 #endif /* SALT_PLUME_VOLUME */
88 COMMON /FFIELDS_saltPlumeFlux/ saltPlumeFlux
89 #endif /* ALLOW_SALT_PLUME */

  ViewVC Help
Powered by ViewVC 1.1.22