[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.
This commit is contained in:
Ray Speth 2014-01-23 03:05:57 +00:00
parent 5fbbd30747
commit f8754904dd

View file

@ -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++) {