debugging

This commit is contained in:
ekinaci
2016-08-10 14:44:32 +02:00
parent 1d48ed1b5f
commit cc308f841d
3 changed files with 6 additions and 6 deletions

View File

@ -94,9 +94,9 @@ public:
virtual void execute() = 0;
virtual tmp<fvScalarMatrix> Smi (const label i) const = 0;
// virtual tmp<fvScalarMatrix> Smi (const label i) const = 0;
virtual tmp<fvScalarMatrix> Sm () const = 0;
// virtual tmp<fvScalarMatrix> Sm () const = 0;
};

View File

@ -57,7 +57,7 @@ noChemistry::~noChemistry()
void noChemistry::execute()
{}
tmp<Foam::fvScalarMatrix> noChemistry::Smi(const label i) const
/*tmp<Foam::fvScalarMatrix> noChemistry::Smi(const label i) const
{
tmp<volScalarField> mi
(
@ -109,7 +109,7 @@ tmp<Foam::fvScalarMatrix> noChemistry::Sm() const
);
return tmp<fvScalarMatrix>(new fvScalarMatrix(mi, dimMass/dimTime));
}
}*/
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -68,9 +68,9 @@ public:
void execute();
tmp<fvScalarMatrix> Smi(const label i) const;
// tmp<fvScalarMatrix> Smi(const label i) const;
tmp<fvScalarMatrix> Sm() const;
// tmp<fvScalarMatrix> Sm() const;
};