clean up whitespaces and comments [ci skip]

This commit is contained in:
danielque
2019-08-08 12:34:16 +02:00
parent a35e0dac09
commit b777ae6e9b
6 changed files with 3 additions and 13 deletions

View File

@ -33,7 +33,6 @@ tmp<fv::convectionScheme<scalar> > mvConvection
combustion->R(Yi)
+ particleCloud.chemistryM(0).Smi(i)
+ fvOptions(rho, Yi)
);
YiEqn.relax();

View File

@ -52,7 +52,6 @@ Description
int main(int argc, char *argv[])
{
// #include "postProcess.H"
#include "setRootCase.H"
#include "createTime.H"
#include "createMesh.H"
@ -61,7 +60,6 @@ int main(int argc, char *argv[])
#include "createRDeltaT.H"
#include "createFields.H"
//#include "createFieldRefs.H"
#include "createFvOptions.H"
#include "initContinuityErrs.H"

View File

@ -14,7 +14,6 @@
PtrList<volScalarField>& Y = composition.Y();
// read molecular weight
//const volScalarField& W = composition.W();
volScalarField W(composition.W());
bool propagateInertSpecie = true;

View File

@ -56,7 +56,7 @@ reactantPerParticle::reactantPerParticle
chemistryModel(dict,sm),
propsDict_(dict.subDict(typeName + "Props")),
mesh_(sm.mesh()),
verbose_(propsDict_.lookupOrDefault<bool>("verbose",false)),
verbose_(propsDict_.lookupOrDefault<bool>("verbose",false)),
reactantPerParticle_(NULL),
voidfractionFieldName_(propsDict_.lookupOrDefault<word>("voidfractionFieldName","voidfraction")),
voidfraction_(sm.mesh().lookupObject<volScalarField>(voidfractionFieldName_)),

View File

@ -290,8 +290,6 @@ void species::execute()
}
}
//Info << "partTemp from species.C = " << partTemp_[100][0] << endl;
// give DEM data
particleCloud_.dataExchangeM().giveData(partTempName_, "scalar-atom", partTemp_);
particleCloud_.dataExchangeM().giveData(partRhoName_, "scalar-atom", partRho_);

View File

@ -359,9 +359,8 @@ void heatTransferGunn::calcEnergyContribution()
partNu_[index][0] = Nup;
}
//if(particleCloud_.verbose() && index >=0 && index <2)
if(verbose_ && index >=0 && index <2)
{
if(verbose_ && index >=0 && index <2)
{
Pout << "partHeatFlux = " << partHeatFlux_[index][0] << endl;
Pout << "magUr = " << magUr << endl;
Pout << "kf0 = " << kf0_ << endl;
@ -489,9 +488,6 @@ scalar heatTransferGunn::Nusselt(scalar voidfraction, scalar Rep, scalar Pr) con
void heatTransferGunn::heatFlux(label index, scalar h, scalar As, scalar Tfluid, scalar cg3)
{
//Info << "partTemp from HTGunn.C = " << partTemp_[100][0] << endl;
//Info << "partTemp = " << partTemp_[index][0] << endl;
//Info << "Tfluid = " << Tfluid << endl;
scalar hAs = h * As * cg3;
if (particleCloud_.getParticleEffVolFactors())