mirror of
https://github.com/OPM/opm-upscaling.git
synced 2025-02-25 18:45:23 -06:00
Adapt to changed argument order for a method.
IncompFlowSolverHybrid::solve() argument order has been restored, this is the only place the new argument order (with some new arguments placed in between old arguments) were used correctly, so it has to be changed back.
This commit is contained in:
parent
077f66eaa9
commit
2d09c43b26
@ -243,9 +243,10 @@ namespace Dune
|
|||||||
// Run pressure solver.
|
// Run pressure solver.
|
||||||
bool same_matrix = (bctype_ != Fixed) && (pdd != 0);
|
bool same_matrix = (bctype_ != Fixed) && (pdd != 0);
|
||||||
flow_solver_.solve(fluid, sat, bcond_, src, residual_tolerance_,
|
flow_solver_.solve(fluid, sat, bcond_, src, residual_tolerance_,
|
||||||
linsolver_maxit_, linsolver_prolongate_factor_,
|
|
||||||
linsolver_verbosity_,
|
linsolver_verbosity_,
|
||||||
linsolver_type_, same_matrix, linsolver_smooth_steps_);
|
linsolver_type_, same_matrix,
|
||||||
|
linsolver_maxit_, linsolver_prolongate_factor_,
|
||||||
|
linsolver_smooth_steps_);
|
||||||
double max_mod = flow_solver_.postProcessFluxes();
|
double max_mod = flow_solver_.postProcessFluxes();
|
||||||
std::cout << "Max mod = " << max_mod << std::endl;
|
std::cout << "Max mod = " << max_mod << std::endl;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user