I'm encountering a persistent issue with the sea surface height (zeta) output from my ROMS model, particularly regarding the boundary conditions. My aim is to fix the sea surface height to zero at the north and south boundaries using the Chapman boundary condition, as illustrated 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) == Per Cha Per Cha ! free-surface
Despite adjusting the Nudging/relaxation time scales to large values, the boundary issue persists:
Code: Select all
! Nudging/relaxation time scales, inverse scales will be computed internally, [1:Ngrids].
TNUDG == 10*365.0d0 ! days
ZNUDG == 10*365.0d0 ! days
M2NUDG == 10*365.0d0 ! days
M3NUDG == 10*365.0d0 ! days
! Factor between passive (outflow) and active (inflow) open boundary conditions, [1:Ngrids].
! If OBCFAC > 1, nudging on inflow is stronger than on outflow (recommended).
OBCFAC == 40*365.0d0 ! nondimensional
Code: Select all
! Logical switches (TRUE/FALSE) to increase/decrease horizontal viscosity and/or diffusivity
! in specific areas of the application domain (like sponge areas) for the desired application grid.
LuvSponge == F ! horizontal momentum
LtracerSponge == F F ! temperature, salinity, inert
Any insights or guidance would be greatly appreciated.
Thank you in advance!
Hsin-Yi Chen