Back to home page

MITgcm

 
 

    


File indexing completed on 2018-03-02 18:36:22 UTC

view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
c8a2a4bee7 Chri*0001 C
ac0f2a1690 Chri*0002 CBOP
                0003 C    !ROUTINE: RECIP_DYU_MACROS.h
                0004 C    !INTERFACE:
                0005 C    include RECIP_DYU_MACROS.h
                0006 C    !DESCRIPTION: \bv
                0007 C     *==========================================================*
                0008 C     | RECIP_DYU_MACROS.h                                        
                0009 C     *==========================================================*
                0010 C     | These macros are used to reduce memory requirement and/or 
                0011 C     | memory references when variables are fixed along a given  
                0012 C     | axis or axes.                                             
                0013 C     *==========================================================*
                0014 C     \ev
                0015 CEOP
c8a2a4bee7 Chri*0016 
                0017 #ifdef RECIP_DYU_CONST
                0018 #define  _recip_dyU(i,j,bi,bj) recip_dyU(1,1,1,1)
                0019 #endif
                0020 
                0021 #ifdef RECIP_DYU_FX
                0022 #define  _recip_dyU(i,j,bi,bj) recip_dyU(i,1,bi,1)
                0023 #endif
                0024 
                0025 #ifdef RECIP_DYU_FY
                0026 #define  _recip_dyU(i,j,bi,bj) recip_dyU(1,j,1,bj)
                0027 #endif
                0028 
                0029 #ifndef _recip_dyU
                0030 #define  _recip_dyU(i,j,bi,bj) recip_dyU(i,j,bi,bj)
                0031 #endif