aboutsummaryrefslogtreecommitdiff
path: root/src/macro/NABA_guts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/macro/NABA_guts.h')
-rw-r--r--src/macro/NABA_guts.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/macro/NABA_guts.h b/src/macro/NABA_guts.h
new file mode 100644
index 0000000..ad44638
--- /dev/null
+++ b/src/macro/NABA_guts.h
@@ -0,0 +1,36 @@
+/*@@
+ @header NABA_guts.h
+ @date Jul 98
+ @author Gabrielle Allen
+ @desc
+ Macro to calculate the nabla operator acting on the lapse
+
+ That is alpha_i^i
+
+ @enddesc
+@@*/
+
+#ifndef NABA_GUTS
+#define NABA_GUTS
+
+#include "../../packages/CactusEinstein/Einstein/src/macro/UPPERMET_guts.h"
+#include "../../packages/CactusEinstein/Einstein/src/macro/CDCDA_guts.h"
+
+#ifdef FCODE
+
+ NABA_NABA = UPPERMET_UXX*CDCDA_CDXXDA+UPPERMET_UYY*CDCDA_CDYYDA
+ & +UPPERMET_UZZ*CDCDA_CDZZDA+2*(UPPERMET_UXY*CDCDA_CDXYDA+UPPERMET_UXZ*CDCDA_CDXZDA
+ & +UPPERMET_UYZ*CDCDA_CDYZDA)
+
+#endif
+
+#ifdef CCODE
+
+ NABA_NABA = UPPERMET_UXX*CDCDA_CDXXDA+UPPERMET_UYY*CDCDA_CDYYDA
+ +UPPERMET_UZZ*CDCDA_CDZZDA+2*(UPPERMET_UXY*CDCDA_CDXYDA+UPPERMET_UXZ*CDCDA_CDXZDA
+ +UPPERMET_UYZ*CDCDA_CDYZDA);
+
+#endif
+
+#endif
+