[Python/1D] Retain user-specified products in counterflow premixed flame
When using the 'auto' solver option, user-provided arguments to set_initial_guess were not being saved for subsequent calls to set_initial_guess within Sim1D.solve, causing the solution to always be for equilibrated products.
This commit is contained in:
parent
e3230801c9
commit
b633544477
1 changed files with 1 additions and 1 deletions
|
|
@ -1165,7 +1165,7 @@ class CounterflowPremixedFlame(FlameBase):
|
|||
will be set to the equilibrium state of the reactants mixture.
|
||||
"""
|
||||
|
||||
super().set_initial_guess()
|
||||
super().set_initial_guess(equilibrate=equilibrate)
|
||||
|
||||
Yu = self.reactants.Y
|
||||
Tu = self.reactants.T
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue