//! @file WallBase.cpp // This file is part of Cantera. See License.txt in the top-level directory or // at https://cantera.org/license.txt for license and copyright information. #include "cantera/base/stringUtils.h" #include "cantera/numerics/Func1.h" #include "cantera/zeroD/Wall.h" #include "cantera/thermo/SurfPhase.h" namespace Cantera { WallBase::WallBase() : m_left(0), m_right(0), m_surf(2), m_area(1.0) {} bool WallBase::install(ReactorBase& rleft, ReactorBase& rright) { // check if wall is already installed if (m_left || m_right) { return false; } m_left = &rleft; m_right = &rright; m_left->addWall(*this, 0); m_right->addWall(*this, 1); m_surf[0].setReactor(&rleft); m_surf[1].setReactor(&rright); return true; } void WallBase::setArea(double a) { m_area = a; m_surf[0].setArea(a); m_surf[1].setArea(a); } Wall::Wall() : WallBase(), m_k(0.0), m_rrth(0.0), m_emiss(0.0), m_vf(0), m_qf(0) {} double Wall::vdot(double t) { double rate = m_k * m_area * (m_left->pressure() - m_right->pressure()); if (m_vf) { rate += m_area * m_vf->eval(t); } return rate; } double Wall::Q(double t) { double q1 = (m_area * m_rrth) * (m_left->temperature() - m_right->temperature()); if (m_emiss > 0.0) { double tl = m_left->temperature(); double tr = m_right->temperature(); q1 += m_emiss * m_area * StefanBoltz * (tl*tl*tl*tl - tr*tr*tr*tr); } if (m_qf) { q1 += m_area * m_qf->eval(t); } return q1; } }