From f8754904dd6d94f80db98366dcf625e0a3cc830d Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 23 Jan 2014 03:05:57 +0000 Subject: [PATCH] [Reactor] Make default wall area 1.0 m^2 This makes the default consistent with the documentation in the Python module. Reported by & patch from Bryan Weber. Fixes Issue 194. Cherry-pick of trunk r2614. --- src/zeroD/Wall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zeroD/Wall.cpp b/src/zeroD/Wall.cpp index 9f6680010..7c9f06c0c 100644 --- a/src/zeroD/Wall.cpp +++ b/src/zeroD/Wall.cpp @@ -9,7 +9,7 @@ namespace Cantera { Wall::Wall() : m_left(0), m_right(0), - m_area(0.0), m_k(0.0), m_rrth(0.0), m_emiss(0.0), + m_area(1.0), m_k(0.0), m_rrth(0.0), m_emiss(0.0), m_vf(0), m_qf(0) { for (int n = 0; n < 2; n++) {