Skip to content

Commit af5db5a

Browse files
committed
resolved merge conflicts
1 parent 429d4cc commit af5db5a

4 files changed

Lines changed: 144 additions & 9 deletions

File tree

advection_nonuniform/problems/inputs.slotted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ yrboundary = periodic
3232
u = 1.0
3333
v = 1.0
3434

35-
limiter = 1
35+
limiter = 2
3636

3737
[particles]
3838
do_particles = 0

pyro.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
from util import msg, profile, runparams, io
1313

1414
valid_solvers = ["advection",
15+
"advection_nonuniform",
1516
"advection_rk",
1617
"advection_fv4",
1718
"advection_weno",
18-
"advection_nonuniform",
1919
"compressible",
2020
"compressible_rk",
2121
"compressible_fv4",
@@ -213,8 +213,7 @@ def single_step(self):
213213
basename = self.rp.get_param("io.basename")
214214
plt.savefig("{}{:04d}.png".format(basename, self.sim.n))
215215

216-
if self.make_bench or (result != 0 and self.reset_bench_on_fail):
217-
self.store_as_benchmark()
216+
tm_vis.end()
218217

219218
def __repr__(self):
220219
""" Return a representation of the Pyro object """

0 commit comments

Comments
 (0)