Skip to content

Commit d6c92ab

Browse files
committed
A few more changes to RBC config
1 parent ccb9d5f commit d6c92ab

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pySDC/projects/Resilience/fault_stats.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,6 @@ def main():
16891689
stats_path='data/stats-jusuf',
16901690
**kwargs,
16911691
)
1692-
stats_analyser.get_HR_tol(True)
16931692
stats_analyser.run_stats_generation(runs=kwargs['runs'], step=12)
16941693

16951694
if MPI.COMM_WORLD.rank > 0: # make sure only one rank accesses the data

pySDC/projects/Resilience/strategies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def get_custom_description(self, problem, num_procs):
559559
# dt_max = 0.1 * base_params['problem_params']['eps'] ** 2
560560
elif problem.__name__ == 'run_RBC':
561561
e_tol = 1e-4
562-
dt_slope_min = 0.25
562+
dt_slope_min = 1
563563

564564
else:
565565
raise NotImplementedError(
@@ -1924,7 +1924,7 @@ def get_custom_description(self, problem, num_procs):
19241924
# dt_max = 0.1 * base_params['problem_params']['eps'] ** 2
19251925
elif problem.__name__ == "run_RBC":
19261926
e_tol = 5e-3
1927-
dt_slope_min = 0.25
1927+
dt_slope_min = 1.0
19281928
abort_at_growing_residual = False
19291929
restol_rel = 1e-3
19301930
restol_max = 1e-1

0 commit comments

Comments
 (0)