Simulation Core
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

TD_WellElementsConfiguration.f90 777 B

2 anni fa
2 anni fa
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_WellEl%ROPHoleNumbs
  11. !TD_ROPHole(i)%TopDepth = TD_WellGeo(TD_WellGeneral%WellIntervalsCount)%TopDepth
  12. TD_ROPHole(i)%DownDepth = TD_WellGeo(TD_WellGeneral%WellIntervalsCount)%DownDepth
  13. TD_ROPHole(i)%Length = TD_WellGeo(TD_WellGeneral%WellIntervalsCount)%IntervalLength
  14. TD_ROPHole(i)%Id = TD_ROPHole(i)%Id !!???????????
  15. End Do
  16. end subroutine