Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TD_WellElementsConfiguration.f90 734 B

1 year ago
12345678910111213141516171819202122232425262728
  1. subroutine TD_WellElementsConfiguration
  2. Use TD_DrillStemComponents
  3. Use TD_WellElements
  4. Use TD_WellGeometry
  5. implicit none
  6. Integer :: i, j
  7. !====================================================
  8. ! Modified Well Elements Data
  9. !====================================================
  10. Do i = 1 , TD_ROPHoleNumbs
  11. !TD_ROPHole(i)%TopDepth = TD_WellGeo(TD_WellIntervalsCount)%TopDepth
  12. TD_ROPHole(i)%DownDepth = TD_WellGeo(TD_WellIntervalsCount)%DownDepth
  13. TD_ROPHole(i)%Length = TD_WellGeo(TD_WellIntervalsCount)%IntervalLength
  14. TD_ROPHole(i)%Id = TD_ROPHole(i)%Id !!???????????
  15. End Do
  16. end subroutine