aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 5d0361b0b875e2f624979b58adeb8fa1727119e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Parameter definitions for thorn WaveToyF90
# $Header$

shares: grid

USES KEYWORD type ""
{
}


restricted:

REAL dtfac "The timestep condition dt = dtfac*dx"
{
 0:* :: "Should probably be bigger than zero"
} 0.5


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

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"