mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 18:21:00 -06:00
BlackoilModelNldd: rename ebosNewtonMethod to newtonMethod
This commit is contained in:
parent
16b0b942e9
commit
9287374ad8
@ -515,11 +515,11 @@ private:
|
||||
/// Apply an update to the primary variables.
|
||||
void updateDomainSolution(const Domain& domain, const BVector& dx)
|
||||
{
|
||||
auto& modelSimulator = model_.simulator();
|
||||
auto& ebosNewtonMethod = modelSimulator.model().newtonMethod();
|
||||
SolutionVector& solution = modelSimulator.model().solution(/*timeIdx=*/0);
|
||||
auto& simulator = model_.simulator();
|
||||
auto& newtonMethod = simulator.model().newtonMethod();
|
||||
SolutionVector& solution = simulator.model().solution(/*timeIdx=*/0);
|
||||
|
||||
ebosNewtonMethod.update_(/*nextSolution=*/solution,
|
||||
newtonMethod.update_(/*nextSolution=*/solution,
|
||||
/*curSolution=*/solution,
|
||||
/*update=*/dx,
|
||||
/*resid=*/dx,
|
||||
@ -528,7 +528,7 @@ private:
|
||||
// residual
|
||||
|
||||
// if the solution is updated, the intensive quantities need to be recalculated
|
||||
modelSimulator.model().invalidateAndUpdateIntensiveQuantities(/*timeIdx=*/0, domain);
|
||||
simulator.model().invalidateAndUpdateIntensiveQuantities(/*timeIdx=*/0, domain);
|
||||
}
|
||||
|
||||
//! \brief Get reservoir quantities on this process needed for convergence calculations.
|
||||
|
Loading…
Reference in New Issue
Block a user