Removed unnecessary voidfraction limiter. In this case, even negative values (from massive overpacking) could be tolerated and should be retained to conserve energy.

This commit is contained in:
Thomas Lichtenegger
2022-01-14 09:10:39 +01:00
parent 5f8ac39fad
commit 845cbdd34c

View File

@ -283,8 +283,6 @@ void heatTransferInterGrain::calcEnergyContribution()
if(cellI >= 0) if(cellI >= 0)
{ {
voidfraction = voidfraction_[cellI]; voidfraction = voidfraction_[cellI];
if (voidfraction < 0.01)
voidfraction = 0.01;
partVolume = particleCloud_.particleVolume(index); partVolume = particleCloud_.particleVolume(index);
QPartPart = QPartPart_[cellI]; QPartPart = QPartPart_[cellI];