From 7ca9327f7d046c5660e7d4a3a663b0126ccf9e89 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 3 Aug 2015 22:57:03 -0400 Subject: [PATCH] Fix multiprocessing example to actually get the indicated property --- .../cantera/examples/transport/multiprocessing_viscosity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/examples/transport/multiprocessing_viscosity.py b/interfaces/cython/cantera/examples/transport/multiprocessing_viscosity.py index 36fa18119..1556aafc0 100644 --- a/interfaces/cython/cantera/examples/transport/multiprocessing_viscosity.py +++ b/interfaces/cython/cantera/examples/transport/multiprocessing_viscosity.py @@ -40,7 +40,7 @@ def get_viscosity(args): mech, T, P, X = args gas = gases[mech] gas.TPX = T, P, X - return gas.enthalpy_mass + return gas.viscosity def parallel(mech, predicate, nProcs, nTemps): """