| 1 | C $Header: /u/gcmpack/models/MITgcmUV/model/inc/RDXC_MACROS.h,v 1.1 1998/05/27 21:01:46 cnh Exp $ | 
| 2 | C | 
| 3 | C     /==========================================================\ | 
| 4 | C     | TANPHIATU_MACROS.h                                       | | 
| 5 | C     |==========================================================| | 
| 6 | C     | These macros are used to reduce memory requirement and/or| | 
| 7 | C     | memory references when variables are fixed along a given | | 
| 8 | C     | axis or axes.                                            | | 
| 9 | C     \==========================================================/ | 
| 10 |  | 
| 11 | #ifdef TANPHIATU_CONST | 
| 12 | #define  _tanPhiAtU(i,j,bi,bj) tanPhiAtU(1,1,1,1) | 
| 13 | #endif | 
| 14 |  | 
| 15 | #ifdef TANPHIATU_FX | 
| 16 | #define  _tanPhiAtU(i,j,bi,bj) tanPhiAtU(i,1,bi,1) | 
| 17 | #endif | 
| 18 |  | 
| 19 | #ifdef TANPHIATU_FY | 
| 20 | #define  _tanPhiAtU(i,j,bi,bj) tanPhiAtU(1,j,1,bj) | 
| 21 | #endif | 
| 22 |  | 
| 23 | #ifndef _tanPhiAtU | 
| 24 | #define  _tanPhiAtU(i,j,bi,bj) tanPhiAtU(i,j,bi,bj) | 
| 25 | #endif |