Removed comments for testing purposes.

This commit is contained in:
Thomas Lichtenegger
2016-06-03 10:33:38 +02:00
parent 884d99fbb4
commit 59eb7962f4

View File

@ -68,15 +68,11 @@ SyamlalThermCond::~SyamlalThermCond()
tmp<volScalarField> SyamlalThermCond::thermCond() const
{
return (1-sqrt(1-voidfraction_)) / (voidfraction_) * kf0_;
// just testing: throw away void fraction near boundaries...
//return kf0_/voidfraction_;
}
tmp<volScalarField> SyamlalThermCond::thermDiff() const
{
// return (1-sqrt(1-voidfraction_+SMALL)) / (voidfraction_+SMALL) * kEff0_/(rho_*Cp_);
return thermCond()/(rho_*Cp_);
return thermCond()/(rho_*Cp_);
}