/[MITgcm]/MITgcm_contrib/plumes/plumes_init_fixed.F
ViewVC logotype

Annotation of /MITgcm_contrib/plumes/plumes_init_fixed.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Wed May 5 18:19:35 2004 UTC (20 years ago) by molod
Branch: MAIN
CVS Tags: HEAD
Code for embedded plume model

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

  ViewVC Help
Powered by ViewVC 1.1.22