/[MITgcm]/MITgcm/verification/1D_ocean_ice_column/code/SEAICE_OPTIONS.h
ViewVC logotype

Annotation of /MITgcm/verification/1D_ocean_ice_column/code/SEAICE_OPTIONS.h

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


Revision 1.15 - (hide annotations) (download)
Tue Oct 23 00:10:01 2012 UTC (11 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.14: +84 -29 lines
File MIME type: text/plain
compile B-grid seaice-dynamics code

1 jmc 1.15 C $Header: /u/gcmpack/MITgcm/pkg/seaice/SEAICE_OPTIONS.h,v 1.65 2012/10/16 06:37:33 mlosch Exp $
2 ifenty 1.1 C $Name: $
3    
4 jmc 1.5 C *==========================================================*
5     C | SEAICE_OPTIONS.h
6     C | o CPP options file for sea ice package.
7     C *==========================================================*
8     C | Use this file for selecting options within the sea ice
9     C | package.
10     C *==========================================================*
11 ifenty 1.1
12     #ifndef SEAICE_OPTIONS_H
13     #define SEAICE_OPTIONS_H
14     #include "PACKAGES_CONFIG.h"
15     #include "CPP_OPTIONS.h"
16    
17 jmc 1.5 #ifdef ALLOW_SEAICE
18     C Package-specific Options & Macros go here
19    
20 ifenty 1.1 C-- Write "text-plots" of certain fields in STDOUT for debugging.
21     #undef SEAICE_DEBUG
22    
23     C-- Allow sea-ice dynamic code.
24     C This option is provided to allow use of TAMC
25     C on the thermodynamics component of the code only.
26     C Sea-ice dynamics can also be turned off at runtime
27     C using variable SEAICEuseDYNAMICS.
28 jmc 1.15 #define SEAICE_ALLOW_DYNAMICS
29 ifenty 1.1
30     C-- By default, the sea-ice package uses its own integrated bulk
31     C formulae to compute fluxes (fu, fv, EmPmR, Qnet, and Qsw) over
32     C open-ocean. When this flag is set, these variables are computed
33     C in a separate external package, for example, pkg/exf, and then
34     C modified for sea-ice effects by pkg/seaice.
35     #define SEAICE_EXTERNAL_FLUXES
36    
37 jmc 1.15 C-- The actual number of ice categories used to solve for seaice flux is
38     C now a run-time parameter (SEAICE_multDim).
39     C This CPP-flag will be completely removed soon (no longer in main code);
40     C it is just used to set default number of categories, i.e., =1 if undef,
41     C or =MULTDIM if defined (MULTDIM=7 in default SEAICE_SIZE.h).
42     C Note: be aware of pickup_seaice.* compatibility issues when restarting
43     C a simulation with a different number of categories.
44 ifenty 1.1 #undef SEAICE_MULTICATEGORY
45 jmc 1.15
46     C-- Use the Old version of seaice_growth (close to cvs version 1.70)
47     C otherwise, use the merged version (with some of Ian Fenty s code)
48     #undef SEAICE_GROWTH_LEGACY
49 ifenty 1.1 #undef SEAICE_MODIFY_GROWTH_ADJ
50    
51 gforget 1.11 C-- Since the missing sublimation term is now included
52     C this flag is needed for backward compatibility
53     #define SEAICE_DISABLE_SUBLIM
54    
55 jmc 1.15 C-- Suspected missing term in coupled ocn-ice heat budget (to be confirmed)
56 gforget 1.12 #define SEAICE_DISABLE_HEATCONSFIX
57    
58 jmc 1.15 C-- Default is constant seaice salinity (SEAICE_salt0); Define the following
59     C flag to consider (space & time) variable salinity: advected and forming
60     C seaice with a fraction (=SEAICE_saltFrac) of freezing seawater salinity.
61     C- Note: SItracer also offers an alternative way to handle variable salinity.
62     #define SEAICE_VARIABLE_SALINITY
63    
64     C-- Tracers of ice and/or ice cover.
65     #undef ALLOW_SITRACER
66     #ifdef ALLOW_SITRACER
67     C-- To try avoid 'spontaneous generation' of tracer maxima by advdiff.
68     # define ALLOW_SITRACER_ADVCAP
69     #endif
70 ifenty 1.1
71     C-- By default the seaice model is discretized on a B-Grid (for
72     C historical reasons). Define the following flag to use a new
73     C (not thoroughly) test version on a C-grid
74 jmc 1.15 #undef SEAICE_CGRID
75 ifenty 1.1
76 jmc 1.15 C-- Only for the C-grid version it is possible to
77 ifenty 1.1 #ifdef SEAICE_CGRID
78 jmc 1.15 C enable JFNK code by defining the following flag
79     # define SEAICE_ALLOW_JFNK
80     C enable EVP code by defining the following flag
81     # define SEAICE_ALLOW_EVP
82     # ifdef SEAICE_ALLOW_EVP
83     C-- When set use SEAICE_zetaMin and SEAICE_evpDampC to limit viscosities
84     C from below and above in seaice_evp: not necessary, and not recommended
85     # undef SEAICE_ALLOW_CLIPZETA
86     # else /* not EVP */
87     C regularize zeta to zmax with a smooth tanh-function instead
88     C of a min(zeta,zmax). This improves convergence of iterative
89     C solvers (Lemieux and Tremblay 2009, JGR). No effect on EVP
90     # undef SEAICE_ZETA_SMOOTHREG
91     # endif /* SEAICE_ALLOW_EVP */
92     C allow the truncated ellipse rheology (runtime flag SEAICEuseTEM)
93     # undef SEAICE_ALLOW_TEM
94     #else /* not SEAICE_CGRID, but old B-grid */
95     C-- By default for B-grid dynamics solver wind stress under sea-ice is
96     C set to the same value as it would be if there was no sea-ice.
97     C Define following CPP flag for B-grid ice-ocean stress coupling.
98     # define SEAICE_BICE_STRESS
99    
100     C-- By default for B-grid dynamics solver surface tilt is obtained
101     C indirectly via geostrophic velocities. Define following CPP
102     C in order to use ETAN instead.
103     # define EXPLICIT_SSH_SLOPE
104     C-- Defining this flag turns on FV-discretization of the B-grid LSOR solver.
105     C It is smoother and includes all metric terms, similar to C-grid solvers.
106     C It is here for completeness, but its usefulness is unclear.
107     # undef SEAICE_LSRBNEW
108 ifenty 1.1 #endif /* SEAICE_CGRID */
109    
110 jmc 1.15 C-- When set use MAX_HEFF to cap seaice thickness in seaice_growth;
111     C currently only relevant for SEAICE_GROWTH_LEGACY
112     #undef SEAICE_CAP_HEFF
113     C-- When set limit the Ice-Loading to mass of 1/5 of Surface ocean grid-box
114     #undef SEAICE_CAP_ICELOAD
115     C-- When set use SEAICE_clipVelocties = .true., to clip U/VICE at 40cm/s,
116     C not recommended
117     #undef SEAICE_ALLOW_CLIPVELS
118     C-- When set cap the sublimation latent heat flux in solve4temp according
119     C to the available amount of ice+snow. Otherwise this term is treated
120     C like all of the others -- residuals heat and fw stocks are passed to
121     C the ocean at the end of seaice_growth in a conservative manner.
122     C SEAICE_CAP_SUBLIM is not needed as of now, but kept just in case.
123     #undef SEAICE_CAP_SUBLIM
124    
125     C-- Enable free drift code
126     #undef SEAICE_ALLOW_FREEDRIFT
127    
128     C-- run with sea ice thickness distribution;
129     C set number of categories (nITD) in SEAICE_SIZE.h
130     #undef SEAICE_ITD
131     C
132     C-- SEAICE_ITD replaces SEAICE_MULTICATEGORY
133     #ifdef SEAICE_ITD
134     #undef SEAICE_MULTICATEGORY
135     #endif
136 ifenty 1.1
137 jmc 1.5 #endif /* ALLOW_SEAICE */
138 ifenty 1.1 #endif /* SEAICE_OPTIONS_H */
139    
140     CEH3 ;;; Local Variables: ***
141     CEH3 ;;; mode:fortran ***
142     CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22