Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[WIP] some cleaning of burn_cell_sdc #1728

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
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
10 changes: 8 additions & 2 deletions unit_test/burn_cell_sdc/parse_integration_failure.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,16 @@ def doit(string):
# figure out if it is the VODE failure or burn_t that was provided

is_vode = False

density = None
temperature = None
rhoe = None
tmax = None

xn = None
aux = None
A_rho = None
A_rhoe = None
A_X_k = None
A_aux_k = None

for line in string:
Expand Down Expand Up @@ -163,7 +169,7 @@ def doit(string):

if __name__ == "__main__":
err_file = sys.argv[1]
with open(err_file, "r") as f:
with open(err_file) as f:
lines = f.readlines()

doit(lines)
Loading