mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-03 21:16:54 -06:00
drop using statement for perf_rep_radius_
rather qualify member variable with this->
This commit is contained in:
parent
2cc38ed396
commit
475bea085c
@ -263,7 +263,6 @@ namespace Opm
|
||||
protected:
|
||||
// protected member variables from the Base class
|
||||
|
||||
using Base::perf_rep_radius_;
|
||||
using Base::perf_length_;
|
||||
using Base::bore_diameters_;
|
||||
using Base::ipr_a_;
|
||||
|
@ -1984,7 +1984,7 @@ namespace Opm
|
||||
computePerfRateEval(int_quant, mob, bhp, Tw, perf, allow_cf,
|
||||
cq_s, perf_dis_gas_rate, perf_vap_oil_rate, deferred_logger);
|
||||
// TODO: make area a member
|
||||
const double area = 2 * M_PI * perf_rep_radius_[perf] * perf_length_[perf];
|
||||
const double area = 2 * M_PI * this->perf_rep_radius_[perf] * perf_length_[perf];
|
||||
const auto& material_law_manager = ebos_simulator.problem().materialLawManager();
|
||||
const auto& scaled_drainage_info =
|
||||
material_law_manager->oilWaterScaledEpsInfoDrainage(cell_idx);
|
||||
|
Loading…
Reference in New Issue
Block a user