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 7355 for branches/2016/dev_CNRS_2016/NEMOGCM/NEMO/OPA_SRC/USR – NEMO

Ignore:
Timestamp:
2016-11-28T18:21:42+01:00 (7 years ago)
Author:
flavoni
Message:

merge branch dev_CNRS_2016 & dev_CNRS_AGRIF_LIM3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2016/dev_CNRS_2016/NEMOGCM/NEMO/OPA_SRC/USR/usrdef_sbc.F90

    r6923 r7355  
    1111 
    1212   !!---------------------------------------------------------------------- 
    13    !!   usr_def_sbc    : user defined surface bounday conditions in GYRE case 
     13   !!   usrdef_sbc    : user defined surface bounday conditions in GYRE case 
    1414   !!---------------------------------------------------------------------- 
    1515   USE oce             ! ocean dynamics and tracers 
     
    2626   PRIVATE 
    2727 
    28    PUBLIC   usr_def_sbc    ! routine called in sbcmod module 
     28   PUBLIC   usrdef_sbc_oce    ! routine called in sbcmod module 
     29   PUBLIC   usrdef_sbc_ice_tau  ! routine called by sbcice_lim.F90 for ice dynamics 
     30   PUBLIC   usrdef_sbc_ice_flx  ! routine called by sbcice_lim.F90 for ice thermo 
    2931 
    3032   !! * Substitutions 
     
    3739CONTAINS 
    3840 
    39    SUBROUTINE usr_def_sbc( kt ) 
     41   SUBROUTINE usrdef_sbc_oce( kt ) 
    4042      !!--------------------------------------------------------------------- 
    41       !!                    ***  ROUTINE usr_def_sbc  *** 
     43      !!                    ***  ROUTINE usrdef_sbc  *** 
    4244      !!               
    4345      !! ** Purpose :   provide at each time-step the GYRE surface boundary 
     
    133135!!    Commented here as they change the GYRE results  
    134136!#if !defined key_mpp_rep 
    135 !      CALL ctl_stop( 'usr_def_sbc: key_mpp_rep is required to run GYRE configuration') 
     137!      CALL ctl_stop( 'usrdef_sbc_oce: key_mpp_rep is required to run GYRE configuration') 
    136138!#endif 
    137139!!gm 
     
    198200      IF( kt == nit000 .AND. lwp ) THEN  
    199201         WRITE(numout,*) 
    200          WRITE(numout,*)'usr_def_sbc : analytical surface fluxes for GYRE configuration'                
     202         WRITE(numout,*)'usrdef_sbc_oce : analytical surface fluxes for GYRE configuration'                
    201203         WRITE(numout,*)'~~~~~~~~~~~ '  
    202204         WRITE(numout,*)'           nyear      = ', nyear 
     
    228230      ENDIF 
    229231      ! 
    230    END SUBROUTINE usr_def_sbc 
     232   END SUBROUTINE usrdef_sbc_oce 
     233 
     234   SUBROUTINE usrdef_sbc_ice_tau( kt ) 
     235      INTEGER, INTENT(in) ::   kt   ! ocean time step 
     236   END SUBROUTINE usrdef_sbc_ice_tau 
     237 
     238   SUBROUTINE usrdef_sbc_ice_flx( kt ) 
     239      INTEGER, INTENT(in) ::   kt   ! ocean time step 
     240   END SUBROUTINE usrdef_sbc_ice_flx 
    231241 
    232242   !!====================================================================== 
Note: See TracChangeset for help on using the changeset viewer.