mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-01 03:56:55 -06:00
changed: remove unused parameters
This commit is contained in:
parent
41f40e5002
commit
7d13d347db
@ -197,7 +197,7 @@ namespace Opm {
|
||||
auto grp_nwrk_values = ::Opm::data::GroupAndNetworkValues{};
|
||||
|
||||
this->assignGroupValues(reportStepIdx, sched, grp_nwrk_values.groupData);
|
||||
this->assignNodeValues(reportStepIdx, sched, grp_nwrk_values.nodeData);
|
||||
this->assignNodeValues(grp_nwrk_values.nodeData);
|
||||
|
||||
return grp_nwrk_values;
|
||||
}
|
||||
@ -456,9 +456,7 @@ namespace Opm {
|
||||
const Schedule& sched,
|
||||
std::map<std::string, data::GroupData>& gvalues) const;
|
||||
|
||||
void assignNodeValues(const int reportStepIdx,
|
||||
const Schedule& sched,
|
||||
std::map<std::string, data::NodeData>& gvalues) const;
|
||||
void assignNodeValues(std::map<std::string, data::NodeData>& gvalues) const;
|
||||
|
||||
std::unordered_map<std::string, data::GroupGuideRates>
|
||||
calculateAllGroupGuiderates(const int reportStepIdx, const Schedule& sched) const;
|
||||
|
@ -2549,9 +2549,7 @@ namespace Opm {
|
||||
template <typename TypeTag>
|
||||
void
|
||||
BlackoilWellModel<TypeTag>::
|
||||
assignNodeValues(const int reportStepIdx,
|
||||
const Schedule& sched,
|
||||
std::map<std::string, data::NodeData>& nodevalues) const
|
||||
assignNodeValues(std::map<std::string, data::NodeData>& nodevalues) const
|
||||
{
|
||||
nodevalues.clear();
|
||||
for (const auto& [node, pressure] : node_pressures_) {
|
||||
|
Loading…
Reference in New Issue
Block a user