Skip to content

Commit

Permalink
unit test debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsingal committed Oct 4, 2024
1 parent 83e5ee3 commit 60b3bd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/data/linearBurke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ baseline-pdep_reactions:
high-P-rate-constant: {A: 4.7e+12, b: 0.44, Ea: 0.0}
Troe: {A: 0.5, T3: 1.0e-30, T1: 1.0e+30}

- equation: H2O2 (+M) <=> OH + OH (+M)
- equation: H2O2 <=> 2 OH
type: Chebyshev
temperature-range: [200.0, 2000.0]
pressure-range: [1.000e-01 atm, 1.000e+02 atm]
Expand Down Expand Up @@ -200,7 +200,7 @@ linear-Burke_reactions:
- name: H2O
eps: {A: 10, b: 0, Ea: 0}

- equation: H2O2 (+M) <=> OH + OH (+M)
- equation: H2O2 <=> 2 OH
type: linear-burke
colliders:
- name: M
Expand Down
2 changes: 1 addition & 1 deletion test/python/test_kinetics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@ def test_linearburke_troe(self):
gas_linearBurke.reaction_equations().index(reaction))

def test_linearburke_chebyshev(self):
reaction = "H2O2 (+M) <=> OH + OH (+M)"
reaction = "H2O2 <=> 2 OH"
gas_baseline = ct.Solution('linearBurke-test.yaml',phase='baseline_mechanism')
gas_linearBurke = ct.Solution('linearBurke-test.yaml',phase='linear-Burke_mechanism')
T = 1000 # [K]
Expand Down

0 comments on commit 60b3bd4

Please sign in to comment.