aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorgoodale <goodale@071ba4cb-2270-47cd-a45a-3e542e115664>2000-02-17 09:08:48 +0000
committergoodale <goodale@071ba4cb-2270-47cd-a45a-3e542e115664>2000-02-17 09:08:48 +0000
commit0e3c104605c3cbad724ee0d8e70b67ba4d7feee0 (patch)
tree0439d3e6513a45b049a1d0e28eb6fae22f5b7dcc /param.ccl
parentdd684770ca7f1cd7fb2204e292addb35f9ef3349 (diff)
C version of IDScalarWave
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/IDScalarWaveC/trunk@2 071ba4cb-2270-47cd-a45a-3e542e115664
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl48
1 files changed, 48 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..9a7401d
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,48 @@
+# Parameter definitions for thorn IDScalarWave
+# $Header$
+
+shares: grid
+
+USES KEYWORD type ""
+{
+}
+
+restricted:
+
+KEYWORD initial_data "Type of initial data"
+{
+ "plane" :: "Plane wave"
+ "gaussian" :: "Gaussian wave"
+ "box" :: "Box wave"
+} "gaussian"
+
+private:
+
+REAL radius "The radius of the gaussian wave"
+{
+ 0:* ::
+} 0.0
+
+REAL sigma "The sigma for the gaussian wave"
+{
+ 0:* ::
+} 0.1
+
+REAL kx "The wave number in the x-direction"
+{
+ *:* :: "No restriction"
+} 4.0
+REAL ky "The wave number in the y-direction"
+{
+ *:* :: "No restriction"
+} 0.0
+REAL kz "The wave number in the z-direction"
+{
+ *:* :: "No restriction"
+} 0.0
+
+REAL amplitude "The amplitude of the waves"
+{
+ *:* :: "No restriction"
+} 1.0
+