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 2216 for branches/dev_r2174_DCY/NEMO/OPA_SRC/SBC/sbcblk_core.F90 – NEMO

Ignore:
Timestamp:
2010-10-12T13:36:25+02:00 (14 years ago)
Author:
smasson
Message:

diurnal cycle in coupled mode in dev_r2174_DCY, see ticket:730

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_r2174_DCY/NEMO/OPA_SRC/SBC/sbcblk_core.F90

    r2210 r2216  
    183183#endif 
    184184      !                                                        ! surface ocean fluxes computed with CLIO bulk formulea 
    185       IF( MOD( kt - 1, nn_fsbc ) == 0 )   CALL blk_oce_core( kt, sf, sst_m, ssu_m, ssv_m ) 
     185      IF( MOD( kt - 1, nn_fsbc ) == 0 )   CALL blk_oce_core( sf, sst_m, ssu_m, ssv_m ) 
    186186      ! 
    187187   END SUBROUTINE sbc_blk_core 
    188188    
    189189    
    190    SUBROUTINE blk_oce_core( kt, sf, pst, pu, pv ) 
     190   SUBROUTINE blk_oce_core( sf, pst, pu, pv ) 
    191191      !!--------------------------------------------------------------------- 
    192192      !!                     ***  ROUTINE blk_core  *** 
     
    209209      !!  ** Nota  :   sf has to be a dummy argument for AGRIF on NEC 
    210210      !!--------------------------------------------------------------------- 
    211       INTEGER ,  INTENT(in)                     ::   kt   ! ocean time step 
    212211      TYPE(fld), INTENT(in), DIMENSION(:)       ::   sf    ! input data 
    213212      REAL(wp),  INTENT(in), DIMENSION(jpi,jpj) ::   pst   ! surface temperature                      [Celcius] 
     
    263262      ! ----------------------------------------------------------------------------- ! 
    264263     
    265       IF( ln_dm2dc ) THEN   ;   qsr(:,:) = sbc_dcy( kt, sf(jp_qsr)%fnow )   ! modify now Qsr to include the diurnal cycle 
     264      IF( ln_dm2dc ) THEN   ;   qsr(:,:) = sbc_dcy( sf(jp_qsr)%fnow )   ! modify now Qsr to include the diurnal cycle 
    266265      ELSE                  ;   qsr(:,:) = sf(jp_qsr)%fnow(:,:) 
    267266      ENDIF 
Note: See TracChangeset for help on using the changeset viewer.