Activate MDU option, making SMU method its default.

This commit is contained in:
Atgeirr Flø Rasmussen 2014-06-23 11:29:14 +02:00
parent b3454a03b8
commit 8dceb4b08c

View File

@ -443,11 +443,11 @@ namespace Opm
double weightFunc(const double w) double weightFunc(const double w)
{ {
// SPU // SPU
return 0.0; // return 0.0;
// TMU // TMU
// return w > 0.0 ? std::min(w, 1.0) : 0.0; // return w > 0.0 ? std::min(w, 1.0) : 0.0;
// SMU // SMU
// return w > 0.0 ? w/(1.0 + w) : 0.0; return w > 0.0 ? w/(1.0 + w) : 0.0;
} }
} }