mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -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{};
|
auto grp_nwrk_values = ::Opm::data::GroupAndNetworkValues{};
|
||||||
|
|
||||||
this->assignGroupValues(reportStepIdx, sched, grp_nwrk_values.groupData);
|
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;
|
return grp_nwrk_values;
|
||||||
}
|
}
|
||||||
@ -456,9 +456,7 @@ namespace Opm {
|
|||||||
const Schedule& sched,
|
const Schedule& sched,
|
||||||
std::map<std::string, data::GroupData>& gvalues) const;
|
std::map<std::string, data::GroupData>& gvalues) const;
|
||||||
|
|
||||||
void assignNodeValues(const int reportStepIdx,
|
void assignNodeValues(std::map<std::string, data::NodeData>& gvalues) const;
|
||||||
const Schedule& sched,
|
|
||||||
std::map<std::string, data::NodeData>& gvalues) const;
|
|
||||||
|
|
||||||
std::unordered_map<std::string, data::GroupGuideRates>
|
std::unordered_map<std::string, data::GroupGuideRates>
|
||||||
calculateAllGroupGuiderates(const int reportStepIdx, const Schedule& sched) const;
|
calculateAllGroupGuiderates(const int reportStepIdx, const Schedule& sched) const;
|
||||||
|
@ -2549,9 +2549,7 @@ namespace Opm {
|
|||||||
template <typename TypeTag>
|
template <typename TypeTag>
|
||||||
void
|
void
|
||||||
BlackoilWellModel<TypeTag>::
|
BlackoilWellModel<TypeTag>::
|
||||||
assignNodeValues(const int reportStepIdx,
|
assignNodeValues(std::map<std::string, data::NodeData>& nodevalues) const
|
||||||
const Schedule& sched,
|
|
||||||
std::map<std::string, data::NodeData>& nodevalues) const
|
|
||||||
{
|
{
|
||||||
nodevalues.clear();
|
nodevalues.clear();
|
||||||
for (const auto& [node, pressure] : node_pressures_) {
|
for (const auto& [node, pressure] : node_pressures_) {
|
||||||
|
Loading…
Reference in New Issue
Block a user