Simulation Core
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

20 Zeilen
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