remove unused variable

This commit is contained in:
danielque
2021-07-29 15:21:12 +02:00
parent ae2eba53dd
commit 7f696cb3f1
2 changed files with 0 additions and 4 deletions

View File

@ -64,7 +64,6 @@ reactionHeat::reactionHeat
mesh_,
dimensionedScalar("zero", dimensionSet(1,-1,-3,0,0,0,0),0.0)
),
loopCounter_(-1),
Nevery_(propsDict_.lookupOrDefault<label>("Nevery",1)),
couplingTimestep_(0.0)
{
@ -94,7 +93,6 @@ reactionHeat::~reactionHeat()
void reactionHeat::calcEnergyContribution()
{
loopCounter_++;
execution_ = (particleCloud_.dataExchangeM().couplingStep() % Nevery_ == 0);
if (!execution_)
{

View File

@ -60,8 +60,6 @@ protected:
volScalarField reactionHeatField_;
label loopCounter_;
label Nevery_;
scalar couplingTimestep_;