From a79ee8e07a13f663c543046cb77df5e936066f75 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 3f743e586..f895a0761 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): """