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 950 B

1 year ago
12345678910111213141516171819202122232425262728
  1. subroutine TD_WellElementsConfiguration
  2. Use TD_DrillStemComponents
  3. use SimulationVariables !@
  4. use SimulationVariables !@
  5. implicit none
  6. Integer :: i, j
  7. !====================================================
  8. ! Modified Well Elements Data
  9. !====================================================
  10. Do i = 1 , data%State%TD_WellEl%ROPHoleNumbs
  11. !data%State%TD_ROPHole(i)%TopDepth = data%State%TD_WellGeo(data%State%TD_WellGeneral%WellIntervalsCount)%TopDepth
  12. data%State%TD_ROPHole(i)%DownDepth = data%State%TD_WellGeo(data%State%TD_WellGeneral%WellIntervalsCount)%DownDepth
  13. data%State%TD_ROPHole(i)%Length = data%State%TD_WellGeo(data%State%TD_WellGeneral%WellIntervalsCount)%IntervalLength
  14. data%State%TD_ROPHole(i)%Id = data%State%TD_ROPHole(i)%Id !!???????????
  15. End Do
  16. end subroutine