From d4f9717c1ccf8469128cb8ab2f750cdd5bf4eadc Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Fri, 1 Nov 2019 19:05:34 -0400 Subject: [PATCH] [Input] Fix handling of global Motz-Wise flag in cti2yaml --- interfaces/cython/cantera/cti2yaml.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interfaces/cython/cantera/cti2yaml.py b/interfaces/cython/cantera/cti2yaml.py index fa8b89705..7f153c90f 100644 --- a/interfaces/cython/cantera/cti2yaml.py +++ b/interfaces/cython/cantera/cti2yaml.py @@ -1460,6 +1460,8 @@ class ideal_interface(phase): def get_yaml(self, out): super().get_yaml(out) out['site-density'] = applyUnits(self.site_density) + if _motz_wise is not None: + out['Motz-Wise'] = _motz_wise class edge(ideal_interface):