mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge branch 'master' into gravity-in-wells
This commit is contained in:
commit
f9fe3322b6
@ -762,27 +762,16 @@ namespace Opm
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// macro to insert const_cast to get a round bug in GCC 4.6.3 where it
|
|
||||||
// suddenly believes that "this" is a const pointer, although we are not
|
|
||||||
// in a const method.
|
|
||||||
#if ( __GNUC__ == 4 ) && ( __GNUC_MINOR__ == 6 ) && ( __GNUC_PATCHLEVEL__ == 3 )
|
|
||||||
#define CONST_CAST(T,v) const_cast<T>(v)
|
|
||||||
#else
|
|
||||||
#define CONST_CAST(T,v) v
|
|
||||||
#endif
|
|
||||||
|
|
||||||
std::pair<WellNode*, double> WellNode::getWorstOffending(const std::vector<double>& well_reservoirrates_phase,
|
std::pair<WellNode*, double> WellNode::getWorstOffending(const std::vector<double>& well_reservoirrates_phase,
|
||||||
const std::vector<double>& well_surfacerates_phase,
|
const std::vector<double>& well_surfacerates_phase,
|
||||||
ProductionSpecification::ControlMode mode)
|
ProductionSpecification::ControlMode mode)
|
||||||
{
|
{
|
||||||
const int np = phaseUsage().num_phases;
|
const int np = phaseUsage().num_phases;
|
||||||
const int index = self_index_*np;
|
const int index = self_index_*np;
|
||||||
// note: CONST_CAST is just to work around a bug in GCC 4.6.3; it
|
return std::pair<WellNode*, double>(this,
|
||||||
// is not really needed, and should be a harmless no-op.
|
rateByMode(&well_reservoirrates_phase[index],
|
||||||
return std::make_pair<WellNode*, double>(CONST_CAST(WellNode*,this),
|
&well_surfacerates_phase[index],
|
||||||
rateByMode(&well_reservoirrates_phase[index],
|
mode));
|
||||||
&well_surfacerates_phase[index],
|
|
||||||
mode));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void WellNode::applyInjGroupControl(const InjectionSpecification::ControlMode control_mode,
|
void WellNode::applyInjGroupControl(const InjectionSpecification::ControlMode control_mode,
|
||||||
|
Loading…
Reference in New Issue
Block a user