aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@071ba4cb-2270-47cd-a45a-3e542e115664>2008-04-07 03:00:51 +0000
committerschnetter <schnetter@071ba4cb-2270-47cd-a45a-3e542e115664>2008-04-07 03:00:51 +0000
commit22523b4c40d6e4cd5928b36590705ad245bf09ea (patch)
tree9d2fc0a3b75da40eb6737c6d7a9d19da88bb6583
parent2470777827282d084f03f94c9275284546dda883 (diff)
Allow kx=0, ky=0, kz=0 for box initial data. (k_i=0 corresponds to
constant initial data, and there is nothing special about this.) git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/IDScalarWaveC/trunk@38 071ba4cb-2270-47cd-a45a-3e542e115664
-rw-r--r--src/CheckParameters.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/CheckParameters.c b/src/CheckParameters.c
index 0fe9eae..a8cd98d 100644
--- a/src/CheckParameters.c
+++ b/src/CheckParameters.c
@@ -47,12 +47,6 @@ void IDScalarWaveC_CheckParameters(CCTK_ARGUMENTS)
{
CCTK_PARAMWARN("Must have a box grid with box initial data");
}
-
- if (kx == 0 || ky == 0 || kz == 0)
- {
- CCTK_PARAMWARN("Cannot have zero kx,ky,kz for box initial data");
- }
}
return;
}
-