Changes between Version 8 and Version 9 of schwarz_nemo


Ignore:
Timestamp:
07/23/19 16:11:49 (4 years ago)
Author:
snguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schwarz_nemo

    v8 v9  
    1313For a computation of 5 days with 15 time steps per day, a coupling window of 1 day and 6 Schwarz iterations there will be 3 loops. 
    1414 
    15 * One global loop over the coupling windows : 5 to iterate. Counter `iswloop`, limits `1 to nsloops`. 
    16 * One inner loop over the number of schwarz iteration for each coupling window : 6. Counter `kswr`, limits `1 to mswr`. 
    17 * One most inner loop over the time steps done in one Schwarz coupling window : 15 time steps. Counter `istp`, limits `nit000 + (iswloop-1)*ntsinswr to nit000+iswloop*ntsinswr-1` 
     15* One global loop over the coupling windows : 5 to iterate. Counter `iswloop`, values `1 to nsloops`. 
     16* One inner loop over the number of schwarz iteration for each coupling window : 6. Counter `kswr`, values `1 to mswr`. 
     17* One most inner loop over the time steps done in one Schwarz coupling window : 15 time steps. Counter `istp`, values `nit000 + (iswloop-1)*ntsinswr to nit000+iswloop*ntsinswr-1` 
    1818 
    1919The counter given to subroutine `stp(istp)` is rewind to its value before entering the Schwarz loop when the Schwarz coupling window is repeated.