[Reactor] Fixed uninitialized variable 'm_dist' in FlowReactor
This commit is contained in:
parent
ee2697b4b8
commit
da92fed07c
1 changed files with 7 additions and 2 deletions
|
|
@ -13,8 +13,13 @@ using namespace std;
|
|||
namespace Cantera
|
||||
{
|
||||
|
||||
FlowReactor::FlowReactor() : Reactor(), m_fctr(1.0e10),
|
||||
m_speed0(0.0) {}
|
||||
FlowReactor::FlowReactor() :
|
||||
Reactor(),
|
||||
m_fctr(1.0e10),
|
||||
m_speed0(0.0),
|
||||
m_dist(0.0)
|
||||
{
|
||||
}
|
||||
|
||||
// overloaded method of FuncEval. Called by the integrator to
|
||||
// get the initial conditions.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue