mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1326 Fixed with scale of Well Connection Lines
This commit is contained in:
parent
b41a0fb178
commit
54c1bcba93
@ -625,8 +625,8 @@ double RigFlowDiagResults::maxAbsPairFlux(int frameIndex)
|
||||
|
||||
for (const auto& commPair : m_injProdPairFluxCommunicationTimesteps[frameIndex])
|
||||
{
|
||||
if (fabs(commPair.second.first) > maxFlux ) maxFlux = commPair.second.first;
|
||||
if (fabs(commPair.second.second) > maxFlux ) maxFlux = commPair.second.second;
|
||||
if (fabs(commPair.second.first) > maxFlux ) maxFlux = fabs(commPair.second.first);
|
||||
if (fabs(commPair.second.second) > maxFlux ) maxFlux = fabs(commPair.second.second);
|
||||
}
|
||||
|
||||
return maxFlux;
|
||||
|
Loading…
Reference in New Issue
Block a user