|
12345678910111213141516171819202122232425262728 |
- subroutine TD_WellElementsConfiguration
-
- Use TD_DrillStemComponents
- Use TD_WellElements
- Use TD_WellGeometry
-
-
- implicit none
-
- Integer :: i, j
-
-
- !====================================================
- ! Modified Well Elements Data
- !====================================================
-
- Do i = 1 , TD_ROPHoleNumbs
- !TD_ROPHole(i)%TopDepth = TD_WellGeo(TD_WellIntervalsCount)%TopDepth
- TD_ROPHole(i)%DownDepth = TD_WellGeo(TD_WellIntervalsCount)%DownDepth
- TD_ROPHole(i)%Length = TD_WellGeo(TD_WellIntervalsCount)%IntervalLength
- TD_ROPHole(i)%Id = TD_ROPHole(i)%Id !!???????????
- End Do
-
-
-
-
-
- end subroutine
|