From e3c54bd9bfe875794e2ab2ce6a749f13d87e11cf Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Tue, 27 Sep 2022 08:56:58 -0500 Subject: [PATCH] [samples] Fix regression in diffusion_flame_batch.py Remove code introduced in #1394 --- samples/python/onedim/diffusion_flame_batch.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/samples/python/onedim/diffusion_flame_batch.py b/samples/python/onedim/diffusion_flame_batch.py index 82a83feee6..6937ba700f 100644 --- a/samples/python/onedim/diffusion_flame_batch.py +++ b/samples/python/onedim/diffusion_flame_batch.py @@ -26,9 +26,6 @@ import cantera as ct -import warnings -warnings.filterwarnings("error", module=".*") - class FlameExtinguished(Exception): pass @@ -52,7 +49,6 @@ class FlameExtinguished(Exception): reaction_mechanism = 'h2o2.yaml' gas = ct.Solution(reaction_mechanism) -gas.reactant_stoich_coeffs3 width = 18e-3 # 18mm wide f = ct.CounterflowDiffusionFlame(gas, width=width)