New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
user/ctlod/NewSurfaceModule (diff) – NEMO

Changes between Version 48 and Version 49 of user/ctlod/NewSurfaceModule


Ignore:
Timestamp:
2008-02-28T16:38:41+01:00 (16 years ago)
Author:
ctlod
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • user/ctlod/NewSurfaceModule

    v48 v49  
    1313 
    1414'''EXPERIENCES DESCRIPTION:'''[[BR]] 
     15== '''FULL_SDP8''': == 
     16'''* FULL_SDP8''':[[BR]] 
     17Only for NEW_SBC: correct a bug found in limsbc.F90[[BR]] 
     18{{{ 
     19         DO jj = 2, jpjm1 
     20            DO ji = fs_2, fs_jpim1   ! vertor opt. 
     21               ! ... ice-cover wheighted ice-ocean stress at U and V-points  (from I-point values) 
     22               zutau  = 0.5 * ( ztio_u(ji+1,jj) + ztio_u(ji+1,jj+1) ) 
     23!CT start SDP9 
     24               zvtau  = 0.5 * ( ztio_v(ji,jj+1) + ztio_v(ji+1,jj+1) ) 
     25!CT               zvtau  = 0.5 * ( ztio_v(ji,jj+1) + ztio_u(ji+1,jj+1) ) 
     26!CT end SDP9 
     27               ! ... open-ocean (lead) fraction at U- & V-points (from T-point values) 
     28               zfrldu = 0.5 * ( frld (ji,jj) + frld (ji+1,jj  ) ) 
     29               zfrldv = 0.5 * ( frld (ji,jj) + frld (ji  ,jj+1) ) 
     30               ! update surface ocean stress 
     31               utau(ji,jj) = zfrldu * utau(ji,jj) + ( 1. - zfrldu ) * zutau 
     32               vtau(ji,jj) = zfrldv * vtau(ji,jj) + ( 1. - zfrldv ) * zvtau 
     33               ! 
     34            END DO 
     35         END DO 
     36}}} 
     37This could certainly explain the differences in the final meridionnal ocean stress between NEW_SBC and REF_CORE.[[BR]] 
     38And also patterns on the ocean velocities in both directions under sea-ice.[[BR]] 
     39 
     40---- 
     41 
     42 
     43== '''FULL_SDP8''': == 
     44'''* FULL_SDP8''':[[BR]] 
     45REF_CORE & NEW_SBC: nothing change, output only instantaneous fields. 
     46---- 
     47 
    1548== '''FULL_SDP7''': == 
    1649'''* FULL_SDP7''':[[BR]]