reduce info output

remove some info output of mediocre use
This commit is contained in:
danielque
2023-02-14 11:11:05 +01:00
parent 66015ee916
commit 9bc6333c1e
5 changed files with 2 additions and 9 deletions

View File

@ -164,7 +164,8 @@ bool cfdemCloudIB::evolve(volVectorField& Us)
haveEvolvedOnce_=true;
}
Info << "evolve done." << endl;
if(verbose_) Info << "evolve done." << endl;
//if(verbose_) #include "debugInfo.H";

View File

@ -246,8 +246,6 @@ void diffusionCoefficient::execute()
double**& diffusionCoefficients_ = particleCloud_.getParticlePropertyRef<double**>(diffusantGasNames_[j]);
particleCloud_.dataExchangeM().giveData(pushName,"scalar-atom",diffusionCoefficients_);
}
Info << "give data done" << endl;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -174,8 +174,6 @@ void massTransferCoeff::execute()
// give DEM data
particleCloud_.dataExchangeM().giveData(partNuName_, "scalar-atom", partNu_);
particleCloud_.dataExchangeM().giveData(partReName_, "scalar-atom", partRe_);
Info << "give data done" << endl;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -169,8 +169,6 @@ void reactantPerParticle::execute()
// give DEM data
particleCloud_.dataExchangeM().giveData(partReactantName_, "scalar-atom", reactantPerParticle_);
Info << "give data done" << endl;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -103,7 +103,6 @@ interface::~interface()
void interface::setForce() const
{
Info << "interface::setForce" << endl;
for(int index = 0;index < particleCloud_.numberOfParticles(); ++index)
{
//if(mask[index][0])
@ -193,7 +192,6 @@ Info << "interface::setForce" << endl;
} // end if particle found on proc domain
//}// end if in mask
}// end loop particles
Info << "interface::setForce - done" << endl;
}