Update to noSuitability DSF

Threshold now needs to be set to SMALL due to changed definition of DSF's
isDonorSuitable and suitabilityFraction member functions.
This commit is contained in:
Vuko Vukcevic 2018-07-30 08:32:00 +02:00
parent 657c6abfb8
commit 2f00bb4af1

View file

@ -55,8 +55,8 @@ Foam::donorSuitability::noSuitability::noSuitability
const scalarField localDsf(oversetFringeAlgorithm.mesh().nCells(), 0);
this->combineDonorSuitabilityFunction(localDsf);
// Set threshold to dummy large value
this->threshold() = GREAT;
// Set threshold to SMALL such that all the pairs become suitable
this->threshold() = SMALL;
}