My problem is that I feel like ROMS is not picking up all the initials conditions when it runs, and I am wondering why... I just have a regular basin with 2 closed boundaries and 2 (upstream and downstream) open boundaries. My boundary conditions are:
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) == Clo Cha Clo Cha ! free-surface
LBC(isUbar) == Clo Per Clo Per ! 2D U-momentum
LBC(isVbar) == Clo Per Clo Per ! 2D V-momentum
LBC(isUvel) == Clo Per Clo Per ! 3D U-momentum
LBC(isVvel) == Clo Per Clo Per ! 3D V-momentum
LBC(isMtke) == Clo Per Clo Per ! mixing TKE
LBC(isTvar) == Clo Rad Clo Cla \ ! temperature
Clo Rad Clo Cla ! salinity
Code: Select all
#elif defined COASTAL_CURRENT
DO j=JstrR,JendR
DO i=Istr,IendR
ubar(i,j,1)=0.0_r8
END DO
END DO
DO j=Jstr,JendR
DO i=IstrR,IendR
vbar(i,j,1)=-1.0_r8
END DO
END DO
Thanks!
Mat.