#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:
Kristian Bendiksen 2021-08-27 11:08:55 +02:00
parent 4be9714368
commit 2f580a0c52

View File

@ -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;
}