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.
Changeset 1000 for trunk/NEMO/OPA_SRC/SBC/sbcblk_core.F90 – NEMO

Ignore:
Timestamp:
2008-05-30T11:22:27+02:00 (16 years ago)
Author:
cetlod
Message:

computation of wind speed module, see ticket:164

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbcblk_core.F90

    r905 r1000  
    247247      !      0   Wind components and module at T-point relative to the moving ocean   ! 
    248248      ! ----------------------------------------------------------------------------- ! 
     249 
     250      ! Store the wind speed U10m 
     251!CDIR NOVERRCHK 
     252!CDIR COLLAPSE 
     253      DO jj = 1, jpj 
     254         DO ji = 1, jpi   ! vect. opt. 
     255            wndm(ji,jj) = SQRT(  sf(jp_wndi)%fnow(ji,jj) * sf(jp_wndi)%fnow(ji,jj)   & 
     256         &                     + sf(jp_wndj)%fnow(ji,jj) * sf(jp_wndj)%fnow(ji,jj) ) 
     257         ENDDO 
     258      ENDDO 
     259 
    249260      ! ... components ( U10m - U_oce ) at T-point (unmasked) 
    250261      zwnd_i(:,:) = 0.e0   
Note: See TracChangeset for help on using the changeset viewer.