| 1 | 
molod | 
1.1 | 
       subroutine plumes_init_fixed (myThid) | 
| 2 | 
  | 
  | 
c----------------------------------------------------------------------- | 
| 3 | 
  | 
  | 
c  Routine to initialise the plumes package. | 
| 4 | 
  | 
  | 
c   | 
| 5 | 
  | 
  | 
c  Input: myThid       - Process number calling this routine | 
| 6 | 
  | 
  | 
c | 
| 7 | 
  | 
  | 
c----------------------------------------------------------------------- | 
| 8 | 
  | 
  | 
       implicit none | 
| 9 | 
  | 
  | 
#include "CPP_OPTIONS.h" | 
| 10 | 
  | 
  | 
#include "SIZE.h" | 
| 11 | 
  | 
  | 
#include "plumes_SIZE.h" | 
| 12 | 
  | 
  | 
#include "EEPARAMS.h" | 
| 13 | 
  | 
  | 
 | 
| 14 | 
  | 
  | 
       integer myThid | 
| 15 | 
  | 
  | 
 | 
| 16 | 
  | 
  | 
       integer bi, bj | 
| 17 | 
  | 
  | 
       integer im1, im2, jm1, jm2, idim1, idim2, jdim1, jdim2 | 
| 18 | 
  | 
  | 
 | 
| 19 | 
  | 
  | 
       im1 = 1-OLx | 
| 20 | 
  | 
  | 
       im2 = sNx+OLx | 
| 21 | 
  | 
  | 
       jm1 = 1-OLy | 
| 22 | 
  | 
  | 
       jm2 = sNy+OLy | 
| 23 | 
  | 
  | 
       idim1 = 1 | 
| 24 | 
  | 
  | 
       idim2 = sNx | 
| 25 | 
  | 
  | 
       jdim1 = 1 | 
| 26 | 
  | 
  | 
       jdim2 = sNy | 
| 27 | 
  | 
  | 
 | 
| 28 | 
  | 
  | 
       do bj = myByLo(myThid), myByHi(myThid) | 
| 29 | 
  | 
  | 
       do bi = myBxLo(myThid), myBxHi(myThid) | 
| 30 | 
  | 
  | 
C Dummy routine - nothing to do for now | 
| 31 | 
  | 
  | 
       enddo | 
| 32 | 
  | 
  | 
       enddo | 
| 33 | 
  | 
  | 
 | 
| 34 | 
  | 
  | 
       return | 
| 35 | 
  | 
  | 
       end |