Rearranged to use inviscid_fluid_operator = {euler_operator, entropy_stable_euler_operator} for inviscid terms
Options to use entropy-stable for inviscid terms
gas_model.py
Utilities to convert from conservative to/from entropy variables CV <--> EV
Utilities to create CV from projected EV
Examples
Added ESDG option to all examples
Some work better than others - but we should have the option available so we can exercise/debug it
Review guide:
There is a lot of repeated code in the giant gob of examples. The review will go easier/quicker by looking at some representative examples, instead of giving them all detailed attention. Here are some representative examples:
Simple case: pulse-mpi.py
Complex case: thermally-coupled-mpi.py
CC: @hyperSuperCube
Questions for the review:
[ ] Is the scope and purpose of the PR clear?
[ ] The PR should have a description.
[ ] The PR should have a guide if needed (e.g., an ordering).
[ ] Is every top-level method and class documented? Are things that should be documented actually so?
[ ] Is the interface understandable? (I.e. can someone figure out what stuff does?) Is it well-defined?
[ ] Does the implementation do what the docstring claims?
[ ] Is everything that is implemented covered by tests?
[ ] Do you see any immediate risks or performance disadvantages with the design? Example: what do interface normals attach to?
WIP/PR for testing and development of ESDG from @thomasgibson's previous work. (#573).
The main pieces are:
euler.py
entropy_stable_euler_operator
inviscid.py
entropy_conserving_flux_chandrashekar
entropy_stable_inviscid_flux_rusanov
navierstokes.py
inviscid_fluid_operator
= {euler_operator
,entropy_stable_euler_operator
} for inviscid termsgas_model.py
CV
<-->EV
CV
from projectedEV
Review guide:
pulse-mpi.py
thermally-coupled-mpi.py
CC: @hyperSuperCube
Questions for the review: