mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
reduce info output
remove some info output of mediocre use
This commit is contained in:
@ -164,7 +164,8 @@ bool cfdemCloudIB::evolve(volVectorField& Us)
|
|||||||
|
|
||||||
haveEvolvedOnce_=true;
|
haveEvolvedOnce_=true;
|
||||||
}
|
}
|
||||||
Info << "evolve done." << endl;
|
|
||||||
|
if(verbose_) Info << "evolve done." << endl;
|
||||||
|
|
||||||
//if(verbose_) #include "debugInfo.H";
|
//if(verbose_) #include "debugInfo.H";
|
||||||
|
|
||||||
|
|||||||
@ -246,8 +246,6 @@ void diffusionCoefficient::execute()
|
|||||||
double**& diffusionCoefficients_ = particleCloud_.getParticlePropertyRef<double**>(diffusantGasNames_[j]);
|
double**& diffusionCoefficients_ = particleCloud_.getParticlePropertyRef<double**>(diffusantGasNames_[j]);
|
||||||
particleCloud_.dataExchangeM().giveData(pushName,"scalar-atom",diffusionCoefficients_);
|
particleCloud_.dataExchangeM().giveData(pushName,"scalar-atom",diffusionCoefficients_);
|
||||||
}
|
}
|
||||||
|
|
||||||
Info << "give data done" << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -174,8 +174,6 @@ void massTransferCoeff::execute()
|
|||||||
// give DEM data
|
// give DEM data
|
||||||
particleCloud_.dataExchangeM().giveData(partNuName_, "scalar-atom", partNu_);
|
particleCloud_.dataExchangeM().giveData(partNuName_, "scalar-atom", partNu_);
|
||||||
particleCloud_.dataExchangeM().giveData(partReName_, "scalar-atom", partRe_);
|
particleCloud_.dataExchangeM().giveData(partReName_, "scalar-atom", partRe_);
|
||||||
|
|
||||||
Info << "give data done" << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -169,8 +169,6 @@ void reactantPerParticle::execute()
|
|||||||
|
|
||||||
// give DEM data
|
// give DEM data
|
||||||
particleCloud_.dataExchangeM().giveData(partReactantName_, "scalar-atom", reactantPerParticle_);
|
particleCloud_.dataExchangeM().giveData(partReactantName_, "scalar-atom", reactantPerParticle_);
|
||||||
|
|
||||||
Info << "give data done" << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -103,7 +103,6 @@ interface::~interface()
|
|||||||
|
|
||||||
void interface::setForce() const
|
void interface::setForce() const
|
||||||
{
|
{
|
||||||
Info << "interface::setForce" << endl;
|
|
||||||
for(int index = 0;index < particleCloud_.numberOfParticles(); ++index)
|
for(int index = 0;index < particleCloud_.numberOfParticles(); ++index)
|
||||||
{
|
{
|
||||||
//if(mask[index][0])
|
//if(mask[index][0])
|
||||||
@ -193,7 +192,6 @@ Info << "interface::setForce" << endl;
|
|||||||
} // end if particle found on proc domain
|
} // end if particle found on proc domain
|
||||||
//}// end if in mask
|
//}// end if in mask
|
||||||
}// end loop particles
|
}// end loop particles
|
||||||
Info << "interface::setForce - done" << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user