| 1 |
cnh |
1.2 |
C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/model/inc/RECIP_DYG_MACROS.h,v 1.2 2001/02/04 14:38:45 cnh Exp $ |
| 2 |
|
|
C $Name: $ |
| 3 |
cnh |
1.1 |
C |
| 4 |
|
|
C /==========================================================\ |
| 5 |
|
|
C | RECIP_DYG_MACROS.h | |
| 6 |
|
|
C |==========================================================| |
| 7 |
|
|
C | These macros are used to reduce memory requirement and/or| |
| 8 |
|
|
C | memory references when variables are fixed along a given | |
| 9 |
|
|
C | axis or axes. | |
| 10 |
|
|
C \==========================================================/ |
| 11 |
|
|
|
| 12 |
|
|
#ifdef RECIP_DYG_CONST |
| 13 |
|
|
#define _recip_dyG(i,j,bi,bj) recip_dyG(1,1,1,1) |
| 14 |
|
|
#endif |
| 15 |
|
|
|
| 16 |
|
|
#ifdef RECIP_DYG_FX |
| 17 |
|
|
#define _recip_dyG(i,j,bi,bj) recip_dyG(i,1,bi,1) |
| 18 |
|
|
#endif |
| 19 |
|
|
|
| 20 |
|
|
#ifdef RECIP_DYG_FY |
| 21 |
|
|
#define _recip_dyG(i,j,bi,bj) recip_dyG(1,j,1,bj) |
| 22 |
|
|
#endif |
| 23 |
|
|
|
| 24 |
|
|
#ifndef _recip_dyG |
| 25 |
|
|
#define _recip_dyG(i,j,bi,bj) recip_dyG(i,j,bi,bj) |
| 26 |
|
|
#endif |