diff --git a/opm/simulators/wells/StandardWellConnections.cpp b/opm/simulators/wells/StandardWellConnections.cpp index a17ea877a..5dacaad09 100644 --- a/opm/simulators/wells/StandardWellConnections.cpp +++ b/opm/simulators/wells/StandardWellConnections.cpp @@ -48,7 +48,7 @@ StandardWellConnections(const WellInterfaceGeneric& well) template void StandardWellConnections:: -computeConnectionPressureDelta() +computePressureDelta() { // Algorithm: diff --git a/opm/simulators/wells/StandardWellConnections.hpp b/opm/simulators/wells/StandardWellConnections.hpp index f08738136..14bb6ccf4 100644 --- a/opm/simulators/wells/StandardWellConnections.hpp +++ b/opm/simulators/wells/StandardWellConnections.hpp @@ -37,7 +37,7 @@ class StandardWellConnections public: StandardWellConnections(const WellInterfaceGeneric& well); - void computeConnectionPressureDelta(); + void computePressureDelta(); // TODO: not total sure whether it is a good idea to put this function here // the major reason to put here is to avoid the usage of Wells struct diff --git a/opm/simulators/wells/StandardWell_impl.hpp b/opm/simulators/wells/StandardWell_impl.hpp index f1e264c54..58e7d84fb 100644 --- a/opm/simulators/wells/StandardWell_impl.hpp +++ b/opm/simulators/wells/StandardWell_impl.hpp @@ -1626,7 +1626,7 @@ namespace Opm } this->connections_.computeConnectionDensities(perfRates, b_perf, rsmax_perf, rvmax_perf, rvwmax_perf, surf_dens_perf, deferred_logger); - this->connections_.computeConnectionPressureDelta(); + this->connections_.computePressureDelta(); } @@ -1640,7 +1640,7 @@ namespace Opm const WellState& well_state, DeferredLogger& deferred_logger) { - // 1. Compute properties required by computeConnectionPressureDelta(). + // 1. Compute properties required by computePressureDelta(). // Note that some of the complexity of this part is due to the function // taking std::vector arguments, and not Eigen objects. std::vector b_perf;