mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-25 16:51:00 -06:00
remove deck parameter from RelpermDiagnostics::unscaledEndPointsCheck_
This commit is contained in:
parent
9dc3f926ba
commit
1565456280
@ -606,8 +606,7 @@ namespace Opm{
|
||||
|
||||
|
||||
|
||||
void RelpermDiagnostics::unscaledEndPointsCheck_(const Deck& deck,
|
||||
const EclipseState& eclState)
|
||||
void RelpermDiagnostics::unscaledEndPointsCheck_(const EclipseState& eclState)
|
||||
{
|
||||
// get the number of saturation regions and the number of cells in the deck
|
||||
const int numSatRegions = eclState.runspec().tabdims().getNumSatTables();
|
||||
@ -621,7 +620,7 @@ namespace Opm{
|
||||
|
||||
// std::cout << "***************\nEnd-Points In all the Tables\n";
|
||||
for (int satnumIdx = 0; satnumIdx < numSatRegions; ++satnumIdx) {
|
||||
unscaledEpsInfo_[satnumIdx].extractUnscaled(deck, eclState, satnumIdx);
|
||||
unscaledEpsInfo_[satnumIdx].extractUnscaled(eclState, satnumIdx);
|
||||
const std::string regionIdx = std::to_string(satnumIdx + 1);
|
||||
///Consistency check.
|
||||
if (unscaledEpsInfo_[satnumIdx].Sgu > (1. - unscaledEpsInfo_[satnumIdx].Swl)) {
|
||||
|
@ -92,8 +92,7 @@ namespace Opm {
|
||||
void tableCheck_(const EclipseState& eclState);
|
||||
|
||||
///Check endpoints in the saturation tables.
|
||||
void unscaledEndPointsCheck_(const Deck& deck,
|
||||
const EclipseState& eclState);
|
||||
void unscaledEndPointsCheck_(const EclipseState& eclState);
|
||||
|
||||
template <class GridT>
|
||||
void scaledEndPointsCheck_(const Deck& deck,
|
||||
|
@ -40,7 +40,7 @@ namespace Opm {
|
||||
phaseCheck_(eclState);
|
||||
satFamilyCheck_(eclState);
|
||||
tableCheck_(eclState);
|
||||
unscaledEndPointsCheck_(deck, eclState);
|
||||
unscaledEndPointsCheck_(eclState);
|
||||
scaledEndPointsCheck_(deck, eclState, grid);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user