Problem Statement
Convergence studies (analyze_steady_convergence() and analyze_unsteady_convergence()) run the solver many times across a parameter space. If a subsequent call expands the search bounds, all previously computed results are discarded and recomputed.
Location(s): pterasoftware/convergence.py
Proposed Solution
Save intermediate results as JSON files so that subsequent calls with expanded bounds can skip previously computed parameter combinations and only evaluate new ones.
Problem Statement
Convergence studies (
analyze_steady_convergence()andanalyze_unsteady_convergence()) run the solver many times across a parameter space. If a subsequent call expands the search bounds, all previously computed results are discarded and recomputed.Location(s):
pterasoftware/convergence.pyProposed Solution
Save intermediate results as JSON files so that subsequent calls with expanded bounds can skip previously computed parameter combinations and only evaluate new ones.