![]() |
Peano
|
Variables | |
int | dimensions = 2 |
int | patch_size = 16 |
int | depth = 5 |
float | end_time = 1.0 |
list | size = [20.0, 20.0, 20.0] |
list | offset = [-5.0, 0.0, 0.0] |
float | time_in_between_two_snapshots = end_time / 10 |
string | compile_mode = "Release" |
my_project | |
my_solver | |
my_pde | |
v = my_pde.name_Q_entries(0, dimensions, "v") | |
sigma = my_pde.name_Q_entries(dimensions, 3 if dimensions == 2 else 6, "sigma") | |
rho = sympy.symbols("rho") | |
cp = sympy.symbols("cp") | |
cs = sympy.symbols("cs") | |
mu = rho * cs * cs | |
float | lamb = rho * cp * cp - 2.0 * mu |
t0 = sympy.symbols("t0") | |
M0 = sympy.symbols("M0") | |
t = sympy.symbols("t") | |
force = M0 * t / (t0 * t0) * sympy.exp(-t / t0) | |
max_h = sympy.symbols("MaxAdmissibleVolumeH") | |
point_source | |
initial_conditions | |
boundary_conditions | |
flux | |
max_eigenvalue | |
source_term | |
plot_description | |
min_end_time | |
max_end_time | |
first_plot_time_stamp | |
time_in_between_plots | |
periodic_BC | |
mode | |
make | |
True | |
make_clean_first | |
throw_away_data_after_build | |
elastic.boundary_conditions |
Definition at line 255 of file elastic.py.
string elastic.compile_mode = "Release" |
Definition at line 51 of file elastic.py.
elastic.cp = sympy.symbols("cp") |
Definition at line 99 of file elastic.py.
Referenced by Numerics.computeParameters().
elastic.cs = sympy.symbols("cs") |
Definition at line 100 of file elastic.py.
Referenced by Numerics.computeParameters().
int elastic.depth = 5 |
Definition at line 29 of file elastic.py.
elastic.dimensions = 2 |
Definition at line 19 of file elastic.py.
float elastic.end_time = 1.0 |
Definition at line 34 of file elastic.py.
elastic.first_plot_time_stamp |
Definition at line 281 of file elastic.py.
elastic.flux |
Definition at line 256 of file elastic.py.
elastic.initial_conditions |
Definition at line 254 of file elastic.py.
elastic.M0 = sympy.symbols("M0") |
Definition at line 211 of file elastic.py.
elastic.make |
Definition at line 319 of file elastic.py.
elastic.make_clean_first |
Definition at line 319 of file elastic.py.
elastic.max_eigenvalue |
Definition at line 257 of file elastic.py.
elastic.max_end_time |
Definition at line 280 of file elastic.py.
elastic.max_h = sympy.symbols("MaxAdmissibleVolumeH") |
Definition at line 215 of file elastic.py.
elastic.min_end_time |
Definition at line 279 of file elastic.py.
elastic.mode |
Definition at line 303 of file elastic.py.
Definition at line 103 of file elastic.py.
Referenced by Numerics.computeParameters(), TP::TwoPunctures.NonLinEquations(), and ContextDynamicRupture< Shortcuts, basisSize, numberOfVariables, numberOfParameters, T >.riemannSolver().
elastic.my_pde |
Definition at line 85 of file elastic.py.
elastic.my_project |
Definition at line 57 of file elastic.py.
elastic.my_solver |
Definition at line 69 of file elastic.py.
elastic.offset = [-5.0, 0.0, 0.0] |
Definition at line 40 of file elastic.py.
int elastic.patch_size = 16 |
Definition at line 24 of file elastic.py.
elastic.periodic_BC |
Definition at line 283 of file elastic.py.
elastic.plot_description |
Definition at line 265 of file elastic.py.
elastic.point_source |
Definition at line 218 of file elastic.py.
elastic.rho = sympy.symbols("rho") |
Definition at line 98 of file elastic.py.
elastic.sigma = my_pde.name_Q_entries(dimensions, 3 if dimensions == 2 else 6, "sigma") |
Definition at line 95 of file elastic.py.
elastic.size = [20.0, 20.0, 20.0] |
Definition at line 39 of file elastic.py.
elastic.source_term |
Definition at line 258 of file elastic.py.
elastic.t = sympy.symbols("t") |
Definition at line 212 of file elastic.py.
elastic.t0 = sympy.symbols("t0") |
Definition at line 210 of file elastic.py.
elastic.throw_away_data_after_build |
Definition at line 319 of file elastic.py.
elastic.time_in_between_plots |
Definition at line 282 of file elastic.py.
float elastic.time_in_between_two_snapshots = end_time / 10 |
Definition at line 45 of file elastic.py.
elastic.True |
Definition at line 319 of file elastic.py.
elastic.v = my_pde.name_Q_entries(0, dimensions, "v") |
Definition at line 93 of file elastic.py.