aboutsummaryrefslogtreecommitdiff
path: root/Examples/EulerSR.m
blob: dd7f91e690287580bfe3e28c7688de885f31daec (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
Get["KrancThorn`"];

SetEnhancedTimes[False];

(**************************************************************************************)
(* Tensors *)
(**************************************************************************************)

(* Register the tensor quantities with the TensorTools package *)
Map[DefineTensor, {Den, S, tau, rho, v, epsi, W, h, p}];

(**************************************************************************************)
(* Groups *)
(**************************************************************************************)

evolvedGroups = Map[CreateGroupFromTensor, {Den, S[lj], tau}];
nonevolvedGroups = Map[CreateGroupFromTensor, 
{
  rho, v[uj], epsi, W, h, p
}];

declaredGroups = Join[evolvedGroups, nonevolvedGroups];
declaredGroupNames = Map[First, declaredGroups];

groups = declaredGroups;

(**************************************************************************************)
(* Initial data *)
(**************************************************************************************)

initialShockCalc =
{
  Name -> "eulersr_initial_shock",
  Schedule -> {"at CCTK_INITIAL as eulersr_initial"},
  ConditionalOnKeyword -> {"initial_data", "shock"},
  Shorthands -> {X},
  Equations ->
  {
    X -> x,
    rho -> rhoR0 StepFunction[X] + rhoL0 (1-StepFunction[X]),
    v[1] -> vR0 StepFunction[X] + vL0 (1-StepFunction[X]),
    v[2] -> vR0 StepFunction[X] + vL0 (1-StepFunction[X]),
    v[3] -> vR0 StepFunction[X] + vL0 (1-StepFunction[X]),
    epsi -> epsiR0 StepFunction[X] + epsiL0 (1-StepFunction[X])
  }
};

(**************************************************************************************)
(* Evolution equations *)
(**************************************************************************************)

(* Euler's equation is dot[u] + PD[F[ui],li] = 0

   with

     u = {D, S, tau}

   and

     DF[ui] = D v[ui]
     SF[ui,lj] = S[lj] v[ui] + p Euc[lj,ui]
     tauF[ui] = v[ui](tau + p)

*)

eulerCons =
{
  Name -> "eulersr_cons_calc",
  Shorthands -> {pBar, Z, Ssq, vsq, pEOS, f, cs, df, Wx},

  Primitives -> {rho, v[ui], epsi},

  Equations ->
  {
    flux[Den,ui] -> Den v[ui],
    flux[S[lj],ui] -> S[lj] v[ui] + ((gamma-1) rho epsi (* This term is p *)) Euc[ui,lj],
    flux[tau,ui] -> v[ui](tau + (gamma-1) rho epsi (* This term is p *))
  },

  ConservedEquations ->
  {
    Wx -> 1 - v[ui] v[uj] Euc[li,lj],
    W -> Wx^(-1/2),
    p -> (gamma-1) rho epsi,
    h -> 1 + epsi + p/rho,

    Den -> rho W,
    S[li] -> rho h W^2 v[uj] Euc[li,lj],
    tau -> rho h W^2 - p - Den
  },

  PrimitiveEquations ->
  {
    (* To compute p, given Den, S[ui], tau and a guess for p (pBar),
         Z = tau + Den + pBar
         S2 = S[li] S[lj] Euc[ui,uj]
         v2 = S2/Z^2
         W = (1-v2)^(-1/2)
         rho = Den/W
         h = Z/(rho W^2)
         epsi = h-1-pBar/rho
         pNew = (gamma - 1) rho epsi
         f = pNew - pBar
         cs = Sqrt[gamma (gamma-1) epsi/h]
         df = v2 cs^2 - 1
         
         -> p (until f is sufficiently small) (also get rho, epsi)
    *)

    pBar -> p, (* from previous timestep *)
    (* Start loop *)

    f -> 10,

    (* This should be some sort of while loop so you run until f <
       1e-12.  A naive implementation in terms of IfThen has subtle
       problems. Ideally, Kranc would support the iterative solution
       of equations directly. Instead, we always run 5 iterations and
       hope that this is enough. *)

    Sequence@@Join@@Table[
    {Z -> tau + Den + pBar,
    Ssq -> S[li] S[lj] Euc[ui,uj],
    vsq -> Ssq/Z^2,
    W -> (1-vsq)^(-1/2),
    rho -> Den/W,
    h -> Z/(rho W^2),
    epsi -> h-1-pBar/rho,
    pEOS -> (gamma - 1) rho epsi,
    f -> pEOS - pBar,
    cs -> Sqrt[gamma (gamma-1) epsi/h],
    df -> vsq cs^2 - 1,
    pBar -> pBar - f/df},
      {i, 1, 5}],

    (* end of loop *)

    p -> pBar,

    v[ui] -> S[lj] Euc[ui,uj] / (rho h W^2)
  }
}

(**************************************************************************************)
(* Parameters *)
(**************************************************************************************)

realParameters = {sigma, v0, amp, rhoR0, rhoL0, vR0, vL0, epsiR0, epsiL0, gamma};

keywordParameters = {
  {
    Name -> "initial_data",
    Default -> "shock",
    AllowedValues -> {"shock"}
  }
};

(**************************************************************************************)
(* Construct the thorn *)
(**************************************************************************************)

calculations = 
{
  initialShockCalc
};

consCalculations = {eulerCons};

CreateKrancThornTT[groups, ".", "EulerSR", 
  Calculations -> calculations,
  ConservationCalculations -> consCalculations,
  DeclaredGroups -> declaredGroupNames,
  RealParameters -> realParameters,
  KeywordParameters -> keywordParameters];