aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguzman <guzman@971fb155-194f-0410-9daf-e2eca44e59f5>2002-05-03 13:57:41 +0000
committerguzman <guzman@971fb155-194f-0410-9daf-e2eca44e59f5>2002-05-03 13:57:41 +0000
commita4e95e0417c4f054d9d8ee67e6426be7592600c1 (patch)
tree5f3635004bf3f6d60502506d0ed8e5b07f728a98
parent86af674f5b1c74616ba0824681fee8b0dc894bbe (diff)
Converted version -> Einstein 2
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/DistortedBHIVP/trunk@24 971fb155-194f-0410-9daf-e2eca44e59f5
-rw-r--r--src/ParamCheck.c107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/ParamCheck.c b/src/ParamCheck.c
new file mode 100644
index 0000000..66c817f
--- /dev/null
+++ b/src/ParamCheck.c
@@ -0,0 +1,107 @@
+ /*@@
+ @file ParamCheck.c
+ @date Fri Apr 26 18:03:09 2002
+ @author Tom Goodale
+ @desc
+ Check the parameters for DistortedBHIVP
+ @enddesc
+ @version $Header: /arrangements/PerturbedBH2/DistortedBHIVP/src/ParamCheck.c,v 1.1 2002/04/30 guzman
+ @@*/
+
+#include "cctk.h"
+
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
+
+static const char *rcsid = "$Header$";
+
+CCTK_FILEVERSION(DistortedBHIVP_ParamCheck_c)
+
+/********************************************************************
+ ********************* Local Data Types ***********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ***************** Scheduled Routine Prototypes *********************
+ ********************************************************************/
+
+void DistortedBHIVP_ParamCheck(CCTK_ARGUMENTS);
+void DistortedBHIVP_ConformalCheck(CCTK_ARGUMENTS);
+
+/********************************************************************
+ ********************* Other Routine Prototypes *********************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* Local Data *****************************
+ ********************************************************************/
+
+/********************************************************************
+ ********************* External Routines **********************
+ ********************************************************************/
+
+void DistortedBHIVP_ParamCheck(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_ARGUMENTS
+ DECLARE_CCTK_PARAMETERS
+
+ /* Do we know how to deal with this type of metric ? */
+ if(! CCTK_EQUALS(metric_type, "physical") &&
+ ! CCTK_EQUALS(metric_type, "static conformal"))
+ {
+ CCTK_PARAMWARN("Unknown ADMBase::metric_type - known types are \"physical\" and \"static conformal\"");
+ }
+
+ if(CCTK_EQUALS(metric_type, "static conformal") &&
+ ! CCTK_EQUALS(conformal_storage, "factor+derivs+2nd derivs"))
+ {
+ CCTK_PARAMWARN("ADMConstraints can currently only work with a physical metric or a static conf");
+ }
+
+}
+
+/********************************************************************
+ ********************* Local Routines *************************
+ ********************************************************************/
+
+ /*@@
+ @routine DistortedBHIVP_ConformalCheck
+ @date Tu Apr 30 2002
+ @author Goodale-Guzman
+ @desc
+ Check that the initial data has setup enough derivatives.
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+ @@*/
+void DistortedBHIVP_ConformalCheck(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ if(CCTK_EQUALS(metric_type, "physical"))
+ {
+ /* Use this internally so we don't need to check the parameter again. */
+ *conformal_state = 0;
+ }
+ else if(CCTK_EQUALS(metric_type, "static conformal"))
+ {
+ if(*conformal_state < 3)
+ {
+ CCTK_WARN(0, "DistortedBHIVP needs second derivatives of the conformal factor when running with a static conformal metric");
+ }
+ }
+
+}
+/********************************************************************
+ ********************* Local Routines *************************
+ ********************************************************************/
+