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.
 
 
 
 
 
 

25 lines
679 B

  1. # 1 "/home/admin/SimulationCore2/CSharp/BasicInputs/WellProfile/CWellSurveyDataVariables.f90"
  2. module CWellSurveyDataVariables
  3. implicit none
  4. public
  5. ! types
  6. type, bind(c), public :: CSurveyDataItem
  7. real(8) :: MeasuredDepth
  8. real(8) :: Inclination
  9. real(8) :: Azimoth
  10. real(8) :: TotalVerticalDepth
  11. real(8) :: X
  12. real(8) :: Y
  13. real(8) :: Z
  14. end type CSurveyDataItem
  15. Type :: WellSurveyDataType
  16. integer :: Count = 0
  17. type(CSurveyDataItem), allocatable :: Items(:)
  18. End Type WellSurveyDataType
  19. ! Type(WellSurveyDataType)::WellSurveyData
  20. contains
  21. end module CWellSurveyDataVariables