Thanks for reading this post.
I'm doing my research on circulation and stratification in microtidal estuaries. I use an idealized straight-channel estuary grid (show below) and I'm looking at the wind effects on the circulation and stratification.
here is my model domain. The grid resolution is 50m*50m in the channel and decreases gradually in the sound area to save computational cost. There are 30 vertical layers.
Code: Select all
Lm == 1550 ! Number of I-direction INTERIOR RHO-points
Mm == 99 ! Number of J-direction INTERIOR RHO-points
N == 30 ! Number of vertical levels
THETA_S == 0.0d0 ! surface stretching parameter
THETA_B == 0.0d0 ! bottom stretching parameter
TCLINE == 1.0d+16 ! critical depth (m)
The north and south shore is closed and free slip, the salinity is 0 PSU in the channel and 16 PSU in the sound initially. There is no tide. The boundary condition is shown below:
Code: Select all
! W S E N
! e o a o
! s u s r
! t t t t
! h h
!
! 1 2 3 4
LBC(isFsur) == Gra Clo Cha Clo ! free-surface
LBC(isUbar) == Cla Clo Cla Clo ! 2D U-momentum
LBC(isVbar) == Cla Clo Cla Clo ! 2D V-momentum
LBC(isUvel) == Gra Clo Rad Clo ! 3D U-momentum
LBC(isVvel) == Gra Clo Rad Clo ! 3D V-momentum
LBC(isMtke) == Gra Clo Rad Clo ! mixing TKE
LBC(isTvar) == Cla Clo RadNud Clo \ ! temperature
Cla Clo RadNud Clo ! salinity
Code: Select all
#define ROMS_MODEL
#define UV_LOGDRAG
#define SALINITY
#define SOLVE3D
#define SPLINES_VVISC
#define SPLINES_VDIFF
#define DJ_GRADPS
#define CURVGRID
#define UV_ADV
#undef UV_COR
#define UV_VIS2
#define MIX_GEO_UV
#define TS_DIF2
#define MIX_GEO_TS
#define GLS_MIXING
#if defined GLS_MIXING
# define KANTHA_CLAYSON
# define N2S2_HORAVG
#define RI_SPLINES
#endif
#define MASKING
#define ANA_INITIAL
#define ANA_SMFLUX
#define ANA_STFLUX
#define ANA_BTFLUX
#define ANA_SSFLUX
#define ANA_BSFLUX
#define ANA_SPFLUX
#define ANA_BPFLUX
#define ANA_TOBC
#define ANA_M2OBC
#define ANA_M3OBC
#define ANA_FSOBC
#define AVERAGES
#define PERFECT_RESTART
#define DIAGNOSTICS_UV
#define DIAGNOSTICS_TS
I tried to use canuto A stability function rather than Kantha one and the vertical mixing looks better but that noise stuff still exists. But when I switch to MY2.5 turbulence closure model there is no this noise stuff at all. Any idea what's causing this issue?
Thanks again for reading my post!!