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 10803 for NEMO/branches/UKMO/r8395_cpl-pressure/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90 – NEMO

Ignore:
Timestamp:
2019-03-26T11:46:36+01:00 (5 years ago)
Author:
jcastill
Message:

Complete set of changes to use pressure read from coupling when available rather than from file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/r8395_cpl-pressure/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r10797 r10803  
    357357      !!              - updte the ice fraction : fr_i 
    358358      !!---------------------------------------------------------------------- 
     359      USE sbcapr, ONLY: sbc_apr 
     360      USE bdydta, ONLY: bdy_dta 
     361      ! 
    359362      INTEGER, INTENT(in) ::   kt   ! ocean time step 
    360363      ! 
     
    385388      !                                            !        forcing field computation         ! 
    386389      !                                            ! ---------------------------------------- ! 
     390      ! 
     391      IF( ln_apr_dyn ) CALL sbc_apr( kt )                ! atmospheric pressure provided at kt+0.5*nn_fsbc 
     392                                                         ! (caution called before sbc_ssm) 
    387393      ! 
    388394      ll_sas = nn_components == jp_iam_sas               ! component flags 
     
    420426      END IF 
    421427      IF( ln_mixcpl )          CALL sbc_cpl_rcv   ( kt, nn_fsbc, nn_ice )   ! forced-coupled mixed formulation after forcing 
    422  
     428      IF( ln_bdy )             CALL bdy_dta ( kt, time_offset=+1 )          ! update dynamic & tracer data at open boundaries 
     429                                                                            ! (caution called after sbc_ssm[_cpl] and before ice) 
    423430      ! 
    424431      !                                            !==  Misc. Options  ==! 
Note: See TracChangeset for help on using the changeset viewer.