From 1a2404aea5906e0b7fb5b9b7fbbe295b8673f19f Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Mon, 16 Dec 2013 23:21:58 +0000 Subject: [PATCH] [Reactor] Make default wall area 1.0 m^2 This makes the default consistent with the documentation in the Python module. Fixes Issue 194. --- 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++) {