1. did these Nudging time scales work on both boundary and climatology? If I want to give a strong nudging time scale to boundary and a weak nudging time scale to climatology, how did i do?
2. many people add the climatology nudging, What is the significance? Please give me some typical cases that using clim nudging.
Code: Select all
! Shc is an update to Flather
   LBC(isFsur) ==   Che     Che     Che     Che         ! free-surface
   LBC(isUbar) ==   Shc     Shc     Shc     Shc         ! 2D U-momentum
   LBC(isVbar) ==   Shc     Shc     Shc     Shc         ! 2D V-momentum
   LBC(isUvel) ==   RadNud  RadNud  RadNud  RadNud      ! 3D U-momentum
   LBC(isVvel) ==   RadNud  RadNud  RadNud  RadNud      ! 3D V-momentum
   LBC(isMtke) ==   Clo     Clo     Clo     Clo         ! mixing TKE
   LBC(isTvar) ==   RadNud  RadNud  RadNud  RadNud \    ! temperature
                    RadNud  RadNud  RadNud  RadNud \    ! salinity
       TNUDG == 2*360.0d0                    ! days
       ZNUDG == 360.0d0                      ! days
      M2NUDG == 360.0d0                      ! days
      M3NUDG == 360.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 == 120.0d0                      ! nondimensional
! Set lateral boundary conditions keyword. Notice that a value is expected
! See glossary below for details.
     LsshCLM == T                          ! sea-surface height
      Lm2CLM == T                          ! 2D momentum
      Lm3CLM == T                          ! 3D momentum
  LtracerCLM == T T                        ! temperature, salinity, inert
! Logical switches (TRUE/FALSE) to nudge the desired climatology field(s).
! If not analytical climatology fields, users need to turn ON the logical
! switches above to process the fields from the climatology NetCDF file
! that are needed for nudging. See glossary below for details.
 LnudgeM2CLM == T                          ! 2D momentum
 LnudgeM3CLM == T                          ! 3D momentum
  LnudgeTCLM == T T                        ! temperature, salinity, inert

