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 1649 – NEMO

Changeset 1649


Ignore:
Timestamp:
2009-10-08T11:26:29+02:00 (15 years ago)
Author:
cetlod
Message:

output 10m wind speed module, see ticket:555

Location:
trunk/NEMO/OPA_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/DIA/diawri.F90

    r1585 r1649  
    306306         CALL histdef( nid_T, "soicecov", "Ice fraction"                       , "[0,1]"  ,   &  ! fr_i 
    307307            &          jpi, jpj, nh_T, 1  , 1, 1  , -99 , 32, clop, zsto, zout ) 
     308         CALL histdef( nid_T, "sowindsp", "wind speed at 10m"                  , "m/s"    ,   &  ! wndm 
     309            &          jpi, jpj, nh_T, 1  , 1, 1  , -99 , 32, clop, zsto, zout ) 
    308310#if ! defined key_coupled  
    309311         CALL histdef( nid_T, "sohefldp", "Surface Heat Flux: Damping"         , "W/m2"   ,   &  ! qrp 
     
    448450      CALL histwrite( nid_T, "somxl010", it, hmlp          , ndim_hT, ndex_hT )   ! mixed layer depth 
    449451      CALL histwrite( nid_T, "soicecov", it, fr_i          , ndim_hT, ndex_hT )   ! ice fraction    
     452      CALL histwrite( nid_T, "sowindsp", it, wndm          , ndim_hT, ndex_hT )   ! wind speed    
    450453#if ! defined key_coupled 
    451454      CALL histwrite( nid_T, "sohefldp", it, qrp           , ndim_hT, ndex_hT )   ! heat flux damping 
  • trunk/NEMO/OPA_SRC/SBC/sbcmod.F90

    r1601 r1649  
    253253      CALL iom_put( "utau", utau )   ! i-wind stress   (stress can be updated at  
    254254      CALL iom_put( "vtau", vtau )   ! j-wind stress    each time step in sea-ice) 
     255      CALL iom_put( "wspd", wndm )   ! wind speed module  
    255256      ! 
    256257      IF(ln_ctl) THEN         ! print mean trends (used for debugging) 
Note: See TracChangeset for help on using the changeset viewer.