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_WellGeometry.f90 713 B

1 year ago
1234567891011121314151617181920212223242526272829303132
  1. MODULE TD_WellGeometry
  2. IMPLICIT NONE
  3. PUBLIC
  4. REAL(8) , PARAMETER :: pi=3.14159265
  5. !====================================================
  6. ! Well Geometry Info
  7. !====================================================
  8. INTEGER :: TD_WellIntervalsCount
  9. REAL(8) :: TD_WellTotalLength , TD_WellTotalVerticalLength
  10. TYPE, PUBLIC :: TD_WellGeometryData
  11. INTEGER :: HoleType
  12. REAL(8) :: StartAngle , EndAngle , IntervalLength , VerticalDepth , TopDepth , DownDepth , RCurvature
  13. END TYPE TD_WellGeometryData
  14. TYPE(TD_WellGeometryData), Allocatable :: TD_WellGeo(:)
  15. END MODULE TD_WellGeometry