In the .in file, I observe two sections for setting the lateral boundary conditions, each corresponding to different boundary condition types:
Code: Select all
! Keyword Lateral Boundary Condition Type
!
! Cha Chapman
! Cla Clamped
! Clo Closed
! Fla Flather _____N_____ j=Mm
! Gra Gradient | 4 |
! Nes Nested | |
! Nud Nudging 1 W E 3
! Per Periodic | |
! Rad Radiation |_____S_____|
! Red Reduced Physics 2 j=1
! i=1 i=Lm
! 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 Clo Per Clo ! free-surface
LBC(isUbar) == Per Clo Per Clo ! 2D U-momentum
LBC(isVbar) == Per Clo Per Clo ! 2D V-momentum
LBC(isUvel) == Per Clo Per Clo ! 3D U-momentum
LBC(isVvel) == Per Clo Per Clo ! 3D V-momentum
LBC(isMtke) == Per Clo Per Clo ! mixing TKE
LBC(isTvar) == Per Clo Per Clo \ ! temperature
Per Clo Per Clo ! salinity
Code: Select all
VolCons(west) == F ! western boundary
VolCons(east) == F ! eastern boundary
VolCons(south) == F ! southern boundary
VolCons(north) == F ! northern boundary
Code: Select all
BRYNAME == roms_bry.nc ! Open boundary conditions
CLMNAME == roms_clm.nc ! Climatology
Now, I aim to set periodic boundary conditions on the east and west edges, and Chapman & Shchepetkin conditions on the north and south edges. Additionally, I'd like to impose a fixed surface tilt on the north-south edges to drive the flow in the model.
Does this imply that I need to modify the boundary condition section (LBC(isFsur), LBC(isUbar), etc.) to reflect the desired boundary conditions? Also, should I provide a boundary condition file containing the fixed surface tilt for the north-south edges with a NETCDF file specified for "BRYNAME == roms_bry.nc"?
Thank you for your guidance.