Changes between Version 6 and Version 7 of schwarz_nemo


Ignore:
Timestamp:
07/23/19 15:37:00 (4 years ago)
Author:
snguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schwarz_nemo

    v6 v7  
    227227zdftke.F90 
    228228}}} 
     229 
     230== a few words on coupling with OASIS == 
     231 
     232The coupling with OASIS is straightforward. 
     233 
     234The calls to `sbc_cpl_snd` in `step.F90` and `sbc_cpl_rcv` in `sbcmod.F90` are modified to use the absolute counter `istpswz` instead of `istp`. 
     235In `step.F90`: 
     236{{{ 
     237      !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
     238      ! Coupled mode 
     239      !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
     240      IF( lk_oasis         )   CALL sbc_cpl_snd( istpswz )     ! coupled mode : field exchanges 
     241}}} 
     242 
     243In `sbcmod.F90`: 
     244{{{ 
     245      CASE( jp_purecpl )  ;  CALL sbc_cpl_rcv ( istpswz, nn_fsbc, nn_ice )   ! pure coupled formulation 
     246}}} 
     247The only case treated is the pure coupling mode. 
     248