Skip to content

Commit 7006d2f

Browse files
hnilbska
authored andcommitted
- fixes for pinched out connections
- for getting "action like behavoir" ok
1 parent 262a7cd commit 7006d2f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

opm/simulators/utils/readDeck.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ namespace {
182182
const Opm::EclipseState& eclipseState,
183183
const Opm::ParseContext& parseContext,
184184
const bool lowActionParsingStrictness,
185-
const bool keepKeywords,
185+
const bool ,//keepKeywords,
186186
std::shared_ptr<Opm::Python> python,
187187
std::shared_ptr<Opm::Schedule>& schedule,
188188
std::unique_ptr<Opm::UDQState>& udqState,
@@ -194,7 +194,7 @@ namespace {
194194
if (schedule == nullptr) {
195195
schedule = std::make_shared<Opm::Schedule>
196196
(deck, eclipseState, parseContext,
197-
errorGuard, std::move(python), lowActionParsingStrictness, slaveMode, keepKeywords);
197+
errorGuard, std::move(python), lowActionParsingStrictness, slaveMode, true);
198198
}
199199
udqState = std::make_unique<Opm::UDQState>
200200
((*schedule)[0].udq().params().undefinedValue());

opm/simulators/wells/ParallelWellInfo.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,8 @@ checkAllConnectionsFound()
803803
}
804804
if (missingCells && pwinfo_.isOwner())
805805
{
806-
OPM_THROW(std::runtime_error, msg);
806+
std::cout << "Warning " << msg << std::endl;
807+
// OPM_THROW(std::runtime_error, msg);
807808
}
808809
return !missingCells;
809810
}

0 commit comments

Comments
 (0)