Are there any conventions for nudging time scales setting?

General scientific issues regarding ROMS

Moderators: arango, robertson

Post Reply
Message
Author
leon
Posts: 78
Joined: Mon Mar 03, 2008 4:14 am

Are there any conventions for nudging time scales setting?

#1 Unread post by leon »

Dear all,
Sometimes, I'm not sure about the nudging time scales in the *.in file of ROMS. Actually, different settling about them will get different resluts. The current around the boundary may not flow out or fully radiated when the nudging time scales are set appropriately. For exmample, when a climatological model (360days per year and foce the model every month) is configured, is it ok if the parameters are set as follows:

Code: Select all

! Nudging/relaxation time scales, inverse scales will be computed
! internally, [1:Ngrids].

       TNUDG == 30.0d0  30.0d0             ! days
       ZNUDG == 30.0d0                     ! days
      M2NUDG == 30.0d0                     ! days
      M3NUDG == 30.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 == 10.0d0                     ! nondimensional

Or any conventions for the nudging parameters settling?

Thank you very much~

leon~

User avatar
kate
Posts: 4088
Joined: Wed Jul 02, 2003 5:29 pm
Location: CFOS/UAF, USA

Re: Are there any conventions for nudging time scales setting?

#2 Unread post by kate »

I don't know if it's a convention, but I typically use:

Code: Select all

       TNUDG == 2*360.0d0                    ! days 
       ZNUDG == 360.0d0                      ! days 
      M2NUDG == 360.0d0                      ! days 
      M3NUDG == 360.0d0                      ! days 
      OBCFAC == 120.0d0                      ! nondimensional
which gives outgoing nudging at one year, incoming at 3 days.

leon
Posts: 78
Joined: Mon Mar 03, 2008 4:14 am

Re: Are there any conventions for nudging time scales setting?

#3 Unread post by leon »

Hi,Kate. Thank you very much for your reply.

How did you determine the nudging coefficients? By expericences?

And do you use the coefficents for all the simulation time scales? For exmaple, the real time scale and the climatological time scale.

Thanks~

User avatar
kate
Posts: 4088
Joined: Wed Jul 02, 2003 5:29 pm
Location: CFOS/UAF, USA

Re: Are there any conventions for nudging time scales setting?

#4 Unread post by kate »

It wasn't my experience so much as advice from Patrick Marchesiello.

I don't know what you mean by real time scale and climatological time scale. I use the Tnudg as described for the boundary conditions, which are coming from 5-day SODA files. I use a different value for nudging to sea surface salinity, hacked into set_vbc:

Code: Select all

          stflx(i,j,isalt)=stflx(i,j,isalt)*t(i,j,N(ng),nrhs,isalt)-    &
     &                     Tnudg(isalt,ng)*Hz(i,j,N(ng))*               &
#ifdef NEP5
!  60 days from Tnudg of 360 days
     &                     6.0_r8*                                      &
#endif
     &                     (t(i,j,N(ng),nrhs,isalt)-sss(i,j))
I guess I need to add the BERING to the #ifdef test.

Post Reply