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

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.22

  ViewVC Help
Powered by ViewVC 1.1.22