From 03bbc5c4695114acf2385f70823097e67e103895 Mon Sep 17 00:00:00 2001 From: ThorstenZirwes Date: Mon, 20 Mar 2023 18:45:27 +0100 Subject: [PATCH] [Python] fix typo in sample --- samples/python/thermo/equivalenceRatio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python/thermo/equivalenceRatio.py b/samples/python/thermo/equivalenceRatio.py index cde23be72..b8124d5d4 100644 --- a/samples/python/thermo/equivalenceRatio.py +++ b/samples/python/thermo/equivalenceRatio.py @@ -40,7 +40,7 @@ print(f"phi = {phi:1.3f}") # If the compositions of fuel and oxidizer are unknown, the function can # be called without arguments. This assumes that all C, H and S atoms come from # the fuel and all O atoms from the oxidizer. In this example, the fuel was set -# to be pre CH4 and the oxidizer O2:0.233,N2:0.767 so that the assumption is true +# to be pure CH4 and the oxidizer O2:0.233,N2:0.767 so that the assumption is true # and the same equivalence ratio as above is computed phi = gas.equivalence_ratio() print(f"phi = {phi:1.3f}")