From e45876491d0139108d9f0f8f0b68a6db8c12e5bd Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Wed, 21 Jun 2023 13:15:37 -0600 Subject: [PATCH] [samples] Update keyword in failing test --- samples/python/onedim/flame_initial_guess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python/onedim/flame_initial_guess.py b/samples/python/onedim/flame_initial_guess.py index e7c2037f0b..00abca337a 100644 --- a/samples/python/onedim/flame_initial_guess.py +++ b/samples/python/onedim/flame_initial_guess.py @@ -104,7 +104,7 @@ def describe(flame): print("Load initial guess from HDF file via SolutionArray") arr2 = ct.SolutionArray(gas) # the flame domain needs to be specified as subgroup - arr2.restore(hdf_filepath, name="freeflame", key="flame") + arr2.restore(hdf_filepath, name="freeflame", sub="flame") gas.TPX = Tin, p, reactants # set the gas T back to the inlet before making new flame f2 = ct.FreeFlame(gas, width=width) f2.set_initial_guess(data=arr2)