- as far as I can see the Cartesian/Spherical option is made in the grid file, by setting variable spherical='F'. Is this right?
2: In a new model application using only 2D physics and no tracers, the only model parameters that aught to be tuned, or at least sensitivity tested, are bottom friction and lateral friction, right?
- The parameters for bottom friction in ROMS are:
rdrd (linear), rdrg2 (quadratic) and Zob (logarithmic formulation), and only one should be activated at the time right (i.e. the other two must be zero)?
Are there any rules of thumb as to what parameterization work best in 2D and what the parameter values should be?
- The parameters for lateral friction in ROMS are:
visc2 (horiz. Laplacian viscosity) and visc4 (horiz. biharmonic viscosity), right?
Are there any rules of thumb as to what parameterization work best in 2D and what the parameter values should be?
3: Is there something missing in the following *.h file (runs fine but results not analyzed yet)
Note that:
- No tracers are activated.
- Model is only forced by tidal elevation at the boundary.
- Area small enough to exclude body forces.
If someone has the time to answer some of my questions than thank you allot in advance/* Momentum terms...... */
/*default horizontal adv. 2D-momentum is 4th-order centered */
#define UV_COR /* Compute Coriolis term */
#define UV_QDRAG /* Quadratic bottom friction */
#define UV_VIS2 /* Comp. horiz. Laplacian viscosity */
#define UV_ADV /* Comp. momentum advection terms */
/* General model terms.... */
/* default 2D-physics are used (3D-physics if 'define SOLVE3D') */
#define MASKING /* There is land in the domain to be masked out */
/* Open boundary condition settings..... */
#define WEST_FSCHAPMAN /* Chapman condition on free surface */
#define WEST_M2FLATHER /* Flather condition on 2D momentum */
#define EAST_FSCHAPMAN /* See above */
#define EAST_M2FLATHER /* See above */
#define SOUTH_FSCHAPMAN /* See above */
#define SOUTH_M2FLATHER /* See above */
#define NORTH_FSCHAPMAN /* See above */
#define NORTH_M2FLATHER /* See above */
/* Analytical fields .... */
#define ANA_SMFLUX /* Ana. kinem. surface mom. stress, by default=0 */
#define ANA_FSOBC /* Ana. free-surface boundary conditions */
#define ANA_M2OBC /* Ana. 2D momentum boundary conditions */
#define ANA_INITIAL /* Ana. initial conditions */
/* Tide options ...... */
#define SSH_TIDES /* Imposing tidal elevation */
#define ADD_FSOBC /* add tidal elev. to open boundary-cond. data */
#define FSOBC_REDUCED /* boundary pg is calc. using boundary zeta */
#define RAMP_TIDES /* tides are ramped 1 day from zero */