aboutsummaryrefslogtreecommitdiff
path: root/src/Analysis.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Analysis.c')
-rw-r--r--src/Analysis.c183
1 files changed, 183 insertions, 0 deletions
diff --git a/src/Analysis.c b/src/Analysis.c
new file mode 100644
index 0000000..f154e76
--- /dev/null
+++ b/src/Analysis.c
@@ -0,0 +1,183 @@
+ /*@@
+ @file Analysis.c
+ @date Thu Apr 25 18:46:27 2002
+ @author Tom Goodale
+ @desc
+ Routines to do the various analysis tasks.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#include "cctk.h"
+
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
+
+#include "ADMAnalysis.h"
+
+static const char *rcsid = "$Header$";
+
+CCTK_FILEVERSION(CactusEinstein_ADMAnalysis_Analysis_c)
+
+/********************************************************************
+ ********************* Local Data Types ***********************
+ ********************************************************************/
+
+#define SQR(a) ((a)*(a))
+
+/********************************************************************
+ ********************* Local Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ***************** Scheduled Routine Prototypes *********************
+ ********************************************************************/
+
+void ADMAnalysis_EvaltrK(CCTK_ARGUMENTS);
+
+void ADMAnalysis_MetricCartToSphere(CCTK_ARGUMENTS);
+
+void ADMAnalysis_CurvCartToSphere(CCTK_ARGUMENTS);
+
+/********************************************************************
+ ********************* Other Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Data *****************************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* External Routines **********************
+ ********************************************************************/
+
+ /*@@
+ @routine ADMAnalysis_EvaltrK
+ @date Thu Apr 25 19:11:32 2002
+ @author Tom Goodale
+ @desc
+ Scheduled routine to evaluate the trace of the extrinsic curvature
+ and the determinant of the metric.
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+void ADMAnalysis_EvaltrK(CCTK_ARGUMENTS)
+{
+ int i;
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ ADMAnalysis_Trace(cctk_lsh,
+ gxx,
+ gxy,
+ gxz,
+ gyy,
+ gyz,
+ gzz,
+ kxx,
+ kxy,
+ kxz,
+ kyy,
+ kyz,
+ kzz,
+ trK,
+ detg);
+
+ /* If we have a conformal metric, must convert trK to non-conformal form */
+ if(CCTK_EQUALS(metric_type, "static conformal") && *conformal_state > 0)
+ {
+ for(i = 0; i< cctk_lsh[0]*cctk_lsh[1]*cctk_lsh[2]; i++)
+ {
+ trK[i] = trK[i] /(SQR(psi[i])*SQR(psi[i]));
+ }
+ }
+}
+
+/*@@
+ @routine ADMAnalysis_MetricCartToSphere
+ @date Thu Apr 25 19:11:32 2002
+ @author Tom Goodale
+ @desc
+ Scheduled routine to evaluate the components of the metric
+ in spherical coordinates
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+void ADMAnalysis_MetricCartToSphere(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ ADMAnalysis_CartToSphere(cctk_lsh,
+ rsquared_in_sphm,
+ x,
+ y,
+ z,
+ r,
+ gxx,
+ gxy,
+ gxz,
+ gyy,
+ gyz,
+ gzz,
+ grr,
+ grq,
+ grp,
+ gqq,
+ gqp,
+ gpp);
+}
+
+/*@@
+ @routine ADMAnalysis_MetricCartToSphere
+ @date Thu Apr 25 19:11:32 2002
+ @author Tom Goodale
+ @desc
+ Scheduled routine to evaluate the components of the extrinsic curvature
+ in spherical coordinates
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+void ADMAnalysis_CurvCartToSphere(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ ADMAnalysis_CartToSphere(cctk_lsh,
+ rsquared_in_sphm,
+ x,
+ y,
+ z,
+ r,
+ kxx,
+ kxy,
+ kxz,
+ kyy,
+ kyz,
+ kzz,
+ Krr,
+ Krq,
+ Krp,
+ Kqq,
+ Kqp,
+ Kpp);
+}
+/********************************************************************
+ ********************* Local Routines *************************
+ ********************************************************************/
+