Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

add an example of comparing the compressible solvers #236

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
198 changes: 198 additions & 0 deletions docs/source/compressible-rt-compare.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ new ideas.
:caption: Examples
:hidden:

compressible-rt-compare.ipynb
advection-error.ipynb
compressible-convergence.ipynb

Expand Down
5 changes: 4 additions & 1 deletion pyro/pyro_sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,10 @@ def single_step(self):
tm_vis.end()

def __repr__(self):
""" Return a representation of the Pyro object """
s = f"Pyro('{self.solver_name}')"
return s

def __str__(self):
s = f"Solver = {self.solver_name}\n"
if self.is_initialized:
s += f"Problem = {self.sim.problem_name}\n"
Expand Down