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.
 
 
 
 
 
 

20 lines
530 B

  1. module CFormationVariables
  2. implicit none
  3. public
  4. ! types
  5. ! Pipe Items in String Array
  6. type, bind(c), public :: CFormationItem
  7. real(8) :: Top
  8. real(8) :: Thickness
  9. real(8) :: Drillablity
  10. real(8) :: Abrasiveness
  11. real(8) :: ThresholdWeight
  12. real(8) :: PorePressureGradient
  13. end type CFormationItem
  14. integer :: FormationCount = 0
  15. type(CFormationItem), allocatable :: Formations(:)
  16. contains
  17. end module CFormationVariables