1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/* Copyright (c) 2020, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */
#include "PBMSolver.h"
CPBMSolver::CPBMSolver() : CBaseSolver()
{
m_type = ESolverTypes::SOLVER_PBM_1;
}
void CPBMSolver::SetInitialHoldup(const CHoldup* _holdup)
{
}
void CPBMSolver::SetInputStream(const CStream* _stream)
{
}
void CPBMSolver::SetOutputStream(double _massFlow)
{
}
void CPBMSolver::Calculate(double _timeBeg, double _timeEnd)
{
}
CHoldup* CPBMSolver::GetResult()
{
return nullptr;
}
|