The values related with viscosity/diffusivity

General scientific issues regarding ROMS

Moderators: arango, robertson

Post Reply
Message
Author
changjw214
Posts: 25
Joined: Thu Feb 09, 2017 6:44 pm
Location: Inha university

The values related with viscosity/diffusivity

#1 Unread post by changjw214 »

Hi friends~

I'm trying to make model using different two model(Delft 3d, ROMS)at same estuary, and compare the result.
for this,I want to change 4 things in ROMS(Horizontal eddy viscosity/diffusivity, Vertical eddy viscosity/diffusivity) to let same condition with Delft 3D.
I look into ocean.in, and know VISC= horizontal viscosity, Akv = vertical viscosity
Is it right?? and How about diffusivity??

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

Re: The values related with viscosity/diffusivity

#2 Unread post by kate »

You were in the right neighborhood of the ocean.in file:

Code: Select all

! Harmonic/biharmonic horizontal diffusion of tracer for nonlinear model
! and adjoint-based algorithms: [1:NAT+NPT,Ngrids].

        TNU2 == 0.0d0  0.0d0                    ! m2/s
        TNU4 == 2*0.0d0                         ! m4/s

     ad_TNU2 == 0.0d0  0.0d0                    ! m2/s
     ad_TNU4 == 0.0d0  0.0d0                    ! m4/s

! Harmonic/biharmonic, horizontal viscosity coefficient for nonlinear model
! and adjoint-based algorithms: [Ngrids].

       VISC2 == 5.0d0                           ! m2/s
       VISC4 == 0.0d0                           ! m4/s

    ad_VISC2 == 0.0d0                           ! m2/s
    ad_VISC4 == 0.0d0                           ! m4/s
For the vertical, these are the background values:

Code: Select all

! Vertical mixing coefficients for tracers in nonlinear model and
! basic state scale factor in adjoint-based algorithms: [1:NAT+NPT,Ngrids]

     AKT_BAK == 1.0d-6 1.0d-6                   ! m2/s

  ad_AKT_fac == 1.0d0  1.0d0                    ! nondimensional

! Vertical mixing coefficient for momentum for nonlinear model and
! basic state scale factor in adjoint-based algorithms: [Ngrids].

     AKV_BAK == 1.0d-5                          ! m2/s

  ad_AKV_fac == 1.0d0                           ! nondimensional
Most models use some sort of parameterization, with names like Mellor-Yamada, Large et al., etc. Those are more complex, using both the cppdefs and ocean.in parameters (for GLS at least) to adjust.

Post Reply