Code: Select all
! Set tracer nudging coefficients in the southern and northern edges
! from a five days time scale at the boundary point to decrease
! linearly to 60 days seven grids points away from the boundary.
!
cff1=1.0_r8/(5.0_r8*86400.0_r8)
cff2=1.0_r8/(60.0_r8*86400.0_r8)
DO j=JstrR,MIN(8,JendR)
DO i=IstrR,IendR
wrk(i,j)=cff2+REAL(8-j,r8)*(cff1-cff2)/7.0_r8
END DO
END DO
DO j=MAX(JstrR,Mm(ng)-7),JendR
DO i=IstrR,IendR
wrk(i,j)=cff1+REAL(Mm(ng)-j,r8)*(cff2-cff1)/7.0_r8
END DO
END DO
There are seven grids poins away from the boundary and resolution is 3/4 degrees.So the buffer zones areas is (3/4)*7 = 5 degrees.It seems not agree with the "Buffer zones are applied at the northern and southern boundaries (3 degrees wide in either case".
Actually , I don't know how the buffer zone are applied and what "5 days" and "60 days" is really meaning. How the so called nudging zones northern and southern "open" boundaries are open while the the Lateral Boundary Condition Type are all "CLO"?
Anyone could help me ?
I am looking forward your replies!
Thanks!