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 11967 for NEMO/branches/2019/ENHANCE-02_ISF_nemo_TEST_MERGE/src/OCE/step.F90 – NEMO

Ignore:
Timestamp:
2019-11-26T15:11:43+01:00 (4 years ago)
Author:
davestorkey
Message:

2019/ENHANCE-02_ISF_nemo_TEST_MERGE : Update to rev 11953.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/ENHANCE-02_ISF_nemo_TEST_MERGE/src/OCE/step.F90

    r11931 r11967  
    112112      IF( ln_tide    )   CALL sbc_tide( kstp )                   ! update tide potential 
    113113      IF( ln_apr_dyn )   CALL sbc_apr ( kstp )                   ! atmospheric pressure (NB: call before bdy_dta which needs ssh_ib)  
    114       IF( ln_bdy     )   CALL bdy_dta ( kstp, time_offset=+1 )   ! update dynamic & tracer data at open boundaries 
     114      IF( ln_bdy     )   CALL bdy_dta ( kstp, kt_offset = +1 )   ! update dynamic & tracer data at open boundaries 
    115115      IF( ln_isf     )   CALL isf_stp ( kstp ) 
    116116                         CALL sbc     ( kstp )                   ! Sea Boundary Condition (including sea-ice) 
     
    166166                            CALL eos    ( tsn, rhd, rhop, gdept_n(:,:,:) )  ! now in situ density for hpg computation 
    167167                             
    168 !!jc: fs simplification 
    169 !!jc: lines below are useless if ln_linssh=F. Keep them here (which maintains a bug if ln_linssh=T and ln_zps=T, cf ticket #1636)  
    170 !!                                         but ensures reproductible results 
    171 !!                                         with previous versions using split-explicit free surface           
    172             IF( ln_zps .AND. .NOT. ln_isfcav )                               & 
    173                &            CALL zps_hde    ( kstp, jpts, tsn, gtsu, gtsv,   &  ! Partial steps: before horizontal gradient 
    174                &                                          rhd, gru , grv     )  ! of t, s, rd at the last ocean level 
    175             IF( ln_zps .AND.       ln_isfcav )                                          & 
    176                &            CALL zps_hde_isf( kstp, jpts, tsn, gtsu, gtsv, gtui, gtvi,  &  ! Partial steps for top cell (ISF) 
    177                &                                          rhd, gru , grv , grui, grvi   )  ! of t, s, rd at the first ocean level 
    178 !!jc: fs simplification 
    179168                             
    180169                         ua(:,:,:) = 0._wp            ! set dynamics trends to zero 
     
    215204      ! diagnostics and outputs 
    216205      !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
    217       IF( lk_floats  )   CALL flo_stp ( kstp )        ! drifting Floats 
     206      IF( ln_floats  )   CALL flo_stp ( kstp )        ! drifting Floats 
    218207      IF( ln_diacfl  )   CALL dia_cfl ( kstp )        ! Courant number diagnostics 
    219208      IF( lk_diahth  )   CALL dia_hth ( kstp )        ! Thermocline depth (20 degres isotherm depth) 
    220       IF( lk_diadct  )   CALL dia_dct ( kstp )        ! Transports 
     209      IF( ln_diadct  )   CALL dia_dct ( kstp )        ! Transports 
    221210                         CALL dia_ar5 ( kstp )        ! ar5 diag 
    222       IF( lk_diaharm )   CALL dia_harm( kstp )        ! Tidal harmonic analysis 
     211      IF( ln_diaharm )   CALL dia_harm( kstp )        ! Tidal harmonic analysis 
    223212                         CALL dia_wri ( kstp )        ! ocean model: outputs 
    224213      ! 
Note: See TracChangeset for help on using the changeset viewer.