aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-25 20:43:55 +0000
committerallen <allen@4451c3c6-1034-4891-99ea-21147727ccdf>1999-07-25 20:43:55 +0000
commit7a90dca5f61a61ec27fde2268f2b823b0eadc7ad (patch)
tree7fc320cae6fd721191636fafb0750be3c7de8c4a /param.ccl
parent567098d30977b236e82ff7b61d421c2f4531e2d1 (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyF77/trunk@3 4451c3c6-1034-4891-99ea-21147727ccdf
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl59
1 files changed, 59 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..fa82a15
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,59 @@
+# Parameter definitions for thorn WaveToyF77
+# $Header$
+
+shares: grid
+
+EXTENDS KEYWORD type ""
+{
+}
+
+private:
+
+REAL dtfac "The timestep condition dt = dtfac*dx"
+{
+ 0:* :: "Should probably be bigger than zero"
+} 0.5
+
+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
+
+KEYWORD initial_data "Type of initial data"
+{
+ "plane" :: "Plane wave"
+ "gaussian" :: "Gaussian wave"
+ "box" :: "Box wave"
+} "gaussian"
+
+KEYWORD bound "Type of boundary condition to use"
+{
+ "none" :: "No boundary condition"
+ "flat" :: "Flat boundary condition"
+ "radiation" :: "Radiation boundary condition"
+} "none"
+
+