ryujin 2.1.1 revision d1a5601757449924e68a428cfd892dfe8915810d
initial_state_rarefaction.h
Go to the documentation of this file.
1//
2// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3// Copyright (C) 2023 - 2024 by the ryujin authors
4//
5
6#pragma once
7
9
10namespace ryujin
11{
12 namespace EulerInitialStates
13 {
26 template <typename Description, int dim, typename Number>
27 class Rarefaction : public InitialState<Description, dim, Number>
28 {
29 public:
31 using View =
32 typename Description::template HyperbolicSystemView<dim, Number>;
33 using state_type = typename View::state_type;
34
35 using state_type_1d = std::array<Number, 4>;
36
37 Rarefaction(const HyperbolicSystem &hyperbolic_system,
38 const std::string subsection)
39 : InitialState<Description, dim, Number>("rarefaction", subsection)
40 , hyperbolic_system_(hyperbolic_system)
41 {
42 gamma_ = 1.4;
43 if constexpr (!View::have_gamma) {
44 this->add_parameter("gamma", gamma_, "The ratio of specific heats");
45 }
46
47 /*
48 * Compute the speed of sound:
49 */
50 const auto speed_of_sound = [&](const Number rho, const Number p) {
51 return std::sqrt(gamma_ * p / rho);
52 };
53
54 /*
55 * Compute the rarefaction right side:
56 */
57 const auto rarefaction_right_state = [this, speed_of_sound](
58 const auto primitive_left,
59 const Number rho_right) {
60 const auto &[rho_left, u_left, p_left, c_left] = primitive_left;
61 state_type_1d primitive_right{{rho_right, 0., 0.}};
62
63 /* Isentropic condition: pR = (rhoR/rhoL)^{gamma} * pL */
64 primitive_right[2] = std::pow(rho_right / rho_left, gamma_) * p_left;
65
66 const auto c_right = speed_of_sound(rho_right, primitive_right[2]);
67 primitive_right[3] = c_right;
68
69 /* 1-Riemann invariant: uR + 2 cR/(gamma -1) = uL + 2 cL/(gamma -1) */
70 primitive_right[1] =
71 u_left + 2.0 * (c_left - c_right) / (gamma_ - 1.0);
72
73 return primitive_right;
74 };
75
76 const auto compute_constants =
77 [this, speed_of_sound, rarefaction_right_state]() {
78 const auto view = hyperbolic_system_.template view<dim, Number>();
79 if constexpr (View::have_gamma) {
80 gamma_ = view.gamma();
81 }
82
83 /*
84 * Initial left and right states (rho, u, p, c):
85 */
86
87 const Number rho_left = 3.0;
88 const Number p_left = 1.0;
89 const Number c_left = speed_of_sound(rho_left, p_left);
90 const Number u_left = c_left; /* verify */
91 const Number rho_right = 0.5;
92
93 primitive_left_ = {rho_left, c_left, p_left, c_left};
94 primitive_right_ =
95 rarefaction_right_state(primitive_left_, rho_right);
96
97 /*
98 * Populate constants:
99 */
100
101 k1 = 2.0 / (gamma_ + 1.0);
102 k2 = ((gamma_ - 1.0) / ((gamma_ + 1.0) * c_left));
103 density_exponent = 2.0 / (gamma_ - 1.0);
104 k3 = c_left + ((gamma_ - 1.0) / 2.0) * u_left;
105 pressure_exponent = 2.0 * gamma_ / (gamma_ - 1.0);
106 };
107
108 this->parse_parameters_call_back.connect(compute_constants);
109 compute_constants();
110 } /* Constructor */
111
112 state_type compute(const dealii::Point<dim> &point, Number delta_t) final
113 {
114 /*
115 * Compute rarefaction solution:
116 */
117
118 const auto &[rho_left, u_left, p_left, c_left] = primitive_left_;
119 const auto &[rho_right, u_right, p_right, c_right] = primitive_right_;
120
121 const double x = point[0];
122 const auto t_0 = 0.2 / (u_right - u_left);
123 const auto t = t_0 + delta_t;
124
125 state_type_1d primitive;
126
127 if (x <= t * (u_left - c_left)) {
128 primitive = primitive_left_;
129
130 } else if (x <= t * (u_right - c_right)) {
131
132 /* Self-similar variable: */
133 const double chi = x / t;
134
135 primitive[0] =
136 rho_left * std::pow(k1 + k2 * (u_left - chi), density_exponent);
137 primitive[1] = k1 * (k3 + chi);
138 primitive[2] =
139 p_left * std::pow(k1 + k2 * (u_left - chi), pressure_exponent);
140
141 } else {
142 primitive = primitive_right_;
143 }
144
145 state_type conserved_state;
146 {
147 const auto &[rho, u, p, c] = primitive;
148 conserved_state[0] = rho;
149 conserved_state[1] = rho * u;
150 conserved_state[dim + 1] =
151 p / Number(gamma_ - 1.) + Number(0.5) * rho * u * u;
152 }
153 return conserved_state;
154 }
155
156 private:
157 const HyperbolicSystem &hyperbolic_system_;
158 Number gamma_;
159
160 state_type_1d primitive_left_;
161 state_type_1d primitive_right_;
162 Number k1;
163 Number k2;
164 Number density_exponent;
165 Number k3;
166 Number pressure_exponent;
167 };
168 } // namespace EulerInitialStates
169} // namespace ryujin
Rarefaction(const HyperbolicSystem &hyperbolic_system, const std::string subsection)
state_type compute(const dealii::Point< dim > &point, Number delta_t) final
typename Description::template HyperbolicSystemView< dim, Number > View
typename Description::HyperbolicSystem HyperbolicSystem
T pow(const T x, const T b)
Euler::HyperbolicSystem HyperbolicSystem
Definition: description.h:32