mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-03 20:57:39 -06:00
#7863 StimPlan Model: Add TST correction for more correct zone thickness
TST is now adjusted (average of TST and TVD in 3D) to improve the zone thickness in the well log plot.
This commit is contained in:
parent
4be9714368
commit
2f580a0c52
@ -88,6 +88,10 @@ cvf::Vec3d RigStimPlanModelTools::calculateTSTDirection( RigEclipseCaseData* ecl
|
||||
direction *= -1.0;
|
||||
}
|
||||
|
||||
// Calculate an adjusted TST direction to improve the zone thickness in the well log plot.
|
||||
// Using average of TST and TVD (default direction) in 3D.
|
||||
direction = ( direction + defaultDirection ) / 2.0;
|
||||
|
||||
return direction;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user