Simulation Core
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

21 рядки
598 B

  1. module CFormationVariables
  2. ! !@use ConfigurationVariables, only: Configuration
  3. implicit none
  4. public
  5. ! types
  6. ! Pipe Items in String Array
  7. type, bind(c), public :: CFormationItem
  8. real(8) :: Top
  9. real(8) :: Thickness
  10. real(8) :: Drillablity
  11. real(8) :: Abrasiveness
  12. real(8) :: ThresholdWeight
  13. real(8) :: PorePressureGradient
  14. end type CFormationItem
  15. Type::FormationType
  16. integer :: Count = 0
  17. type(CFormationItem), allocatable :: Formations(:)
  18. End type FormationType
  19. end module CFormationVariables