/[MITgcm]/MITgcm/model/src/ini_grid.F
ViewVC logotype

Diff of /MITgcm/model/src/ini_grid.F

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

revision 1.7.2.2 by jmc, Wed May 16 20:54:49 2001 UTC revision 1.21 by edhill, Wed Sep 15 21:23:32 2004 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2  C $Name$  C $Name$
3    
4    #include "PACKAGES_CONFIG.h"
5  #include "CPP_OPTIONS.h"  #include "CPP_OPTIONS.h"
6    
7  CStartOfInterface  CBOP
8    C     !ROUTINE: INI_GRID
9    
10    C     !INTERFACE:
11        SUBROUTINE INI_GRID( myThid )        SUBROUTINE INI_GRID( myThid )
12  C     /==========================================================\  C     !DESCRIPTION:
13  C     | SUBROUTINE INI_GRID                                      |  C     These arrays are used throughout the code in evaluating gradients,
14  C     | o Initialise model grid                                  |  C     integrals and spatial avarages. This routine is called separately
15  C     |==========================================================|  C     by each thread and initializes only the region of the domain it is
16  C     | These arrays are used throughout the code in evaluating  |  C     "responsible" for.
 C     | gradients, integrals and spatial avarages. This routine  |  
 C     | is called separately by each thread and initialise only  |  
 C     | the region of the domain it is "responsible" for.        |  
 C     | Notes:                                                   |  
 C     | Two examples are shown in this code. One illustrates the |  
 C     | initialisation of a cartesian grid. The other shows the  |  
 C     | inialisation of a spherical polar grid. Other orthonormal|  
 C     | grids can be fitted into this design. In this case       |  
 C     | custom metric terms also need adding to account for the  |  
 C     | projections of velocity vectors onto these grids.        |  
 C     | The structure used here also makes it possible to        |  
 C     | implement less regular grid mappings. In particular      |  
 C     | o Schemes which leave out blocks of the domain that are  |  
 C     |   all land could be supported.                           |  
 C     | o Multi-level schemes such as icosohedral or cubic       |  
 C     |   grid projectedions onto a sphere can also be fitted    |  
 C     |   within the strategy we use.                            |  
 C     |   Both of the above also require modifying the support   |  
 C     |   routines that map computational blocks to simulation   |  
 C     |   domain blocks.                                         |  
 C     \==========================================================/  
       IMPLICIT NONE  
17    
18  C     === Global variables ===  C     !USES:
19          IMPLICIT NONE
20  #include "SIZE.h"  #include "SIZE.h"
21  #include "EEPARAMS.h"  #include "EEPARAMS.h"
22  #include "PARAMS.h"  #include "PARAMS.h"
23  #include "GRID.h"  #include "GRID.h"
24    #ifdef ALLOW_MONITOR
25    #include "MONITOR.h"
26    #endif
27    #ifdef ALLOW_MNC
28    #include "MNC_PARAMS.h"
29    #endif
30    
31  C     == Routine arguments ==  C     !INPUT/OUTPUT PARAMETERS:
 C     myThid -  Number of this instance of INI_GRID  
32        INTEGER myThid        INTEGER myThid
33  CEndOfInterface  CEOP
34    
35  C     == Local variables ==  C     !LOCAL VARIABLES:
36  C     msgBuf - Used for informational I/O.  C     msgBuf - Used for informational I/O.
37        CHARACTER*(MAX_LEN_MBUF) msgBuf        CHARACTER*(MAX_LEN_MBUF) msgBuf
38          INTEGER i
39    
40  C--   Set up vertical grid and coordinate system  C     Set up vertical grid and coordinate system
41        CALL INI_VERTICAL_GRID( myThid )        CALL INI_VERTICAL_GRID( myThid )
42    
43  C--   Set up horizontal grid and coordinate system  C     Two examples are shown in this code. One illustrates the
44    C     initialization of a cartesian grid. The other shows the
45    C     inialization of a spherical polar grid. Other orthonormal grids
46    C     can be fitted into this design. In this case custom metric terms
47    C     also need adding to account for the projections of velocity
48    C     vectors onto these grids.  The structure used here also makes it
49    C     possible to implement less regular grid mappings. In particular:
50    C      o Schemes which leave out blocks of the domain that are  
51    C        all land could be supported.                            
52    C      o Multi-level schemes such as icosohedral or cubic        
53    C        grid projectedions onto a sphere can also be fitted    
54    C       within the strategy we use.                            
55    C        Both of the above also require modifying the support    
56    C        routines that map computational blocks to simulation    
57    C        domain blocks.                                          
58    
59    C     Set up horizontal grid and coordinate system
60        IF ( usingCartesianGrid ) THEN        IF ( usingCartesianGrid ) THEN
61         CALL INI_CARTESIAN_GRID( myThid )          CALL INI_CARTESIAN_GRID( myThid )
62        ELSEIF ( usingSphericalPolarGrid ) THEN        ELSEIF ( usingSphericalPolarGrid ) THEN
63         CALL INI_SPHERICAL_POLAR_GRID( myThid )          CALL INI_SPHERICAL_POLAR_GRID( myThid )
64        ELSEIF ( usingCurvilinearGrid ) THEN        ELSEIF ( usingCurvilinearGrid ) THEN
65         CALL INI_CURVILINEAR_GRID( myThid )          CALL INI_CURVILINEAR_GRID( myThid )
66          ELSEIF ( usingCylindricalGrid ) THEN
67            CALL INI_CYLINDER( myThid )
68        ELSE        ELSE
69         _BEGIN_MASTER(myThid)          _BEGIN_MASTER(myThid)
70          WRITE(msgBuf,'(A)')          WRITE(msgBuf,'(2A)') 'S/R INI_GRID: ',
71       &   'S/R INI_GRID: No grid coordinate system has been selected'       &       'No grid coordinate system has been selected'
72           CALL PRINT_ERROR( msgBuf , myThid)          CALL PRINT_ERROR( msgBuf , myThid)
73           STOP 'ABNORMAL END: S/R INI_GRID'          STOP 'ABNORMAL END: S/R INI_GRID'
74         _END_MASTER(myThid)          _END_MASTER(myThid)
75        ENDIF        ENDIF
76    
77  C--   Write certain grid data to files (useful for creating netCDF  #ifdef ALLOW_MONITOR
78  C     and general post-analysis)        mon_write_stdout = .FALSE.
79        CALL WRITE_FLD_XY_RS( 'XC',' ',XC,0,myThid)        mon_write_mnc    = .FALSE.
80        CALL WRITE_FLD_XY_RS( 'YC',' ',YC,0,myThid)        IF (monitor_stdio) THEN
81        CALL WRITE_FLD_XY_RS( 'XG',' ',XG,0,myThid)          mon_write_stdout = .TRUE.
82        CALL WRITE_FLD_XY_RS( 'YG',' ',YG,0,myThid)        ENDIF
83        CALL WRITE_FLD_XY_RS( 'AC',' ',rA,0,myThid)        
84    #ifdef ALLOW_MNC
85          IF (useMNC .AND. monitor_mnc) THEN
86            DO i = 1,MAX_LEN_MBUF
87              mon_fname(i:i) = ' '
88            ENDDO
89            mon_fname(1:12) = 'monitor_grid'
90            CALL MNC_CW_SET_UDIM(mon_fname, 1, myThid)
91            mon_write_mnc = .TRUE.
92          ENDIF
93    #endif /*  ALLOW_MNC  */
94          
95    C     Print out statistics of each horizontal grid array (helps when
96    C     debugging)
97          CALL MON_PRINTSTATS_RS(1,XC,'XC',myThid)
98          CALL MON_PRINTSTATS_RS(1,XG,'XG',myThid)
99          CALL MON_PRINTSTATS_RS(1,DXC,'DXC',myThid)
100          CALL MON_PRINTSTATS_RS(1,DXF,'DXF',myThid)
101          CALL MON_PRINTSTATS_RS(1,DXG,'DXG',myThid)
102          CALL MON_PRINTSTATS_RS(1,DXV,'DXV',myThid)
103          CALL MON_PRINTSTATS_RS(1,YC,'YC',myThid)
104          CALL MON_PRINTSTATS_RS(1,YG,'YG',myThid)
105          CALL MON_PRINTSTATS_RS(1,DYC,'DYC',myThid)
106          CALL MON_PRINTSTATS_RS(1,DYF,'DYF',myThid)
107          CALL MON_PRINTSTATS_RS(1,DYG,'DYG',myThid)
108          CALL MON_PRINTSTATS_RS(1,DYU,'DYU',myThid)
109          CALL MON_PRINTSTATS_RS(1,RA,'RA',myThid)
110          CALL MON_PRINTSTATS_RS(1,RAW,'RAW',myThid)
111          CALL MON_PRINTSTATS_RS(1,RAS,'RAS',myThid)
112          CALL MON_PRINTSTATS_RS(1,RAZ,'RAZ',myThid)
113    
114          mon_write_stdout = .FALSE.
115          mon_write_mnc    = .FALSE.
116    #endif
117    
118        RETURN        RETURN
119        END        END

Legend:
Removed from v.1.7.2.2  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.22