|
1234567891011121314151617181920 |
- module CFormationVariables
- implicit none
- public
-
- ! types
- ! Pipe Items in String Array
- type, bind(c), public :: CFormationItem
- real(8) :: Top
- real(8) :: Thickness
- real(8) :: Drillablity
- real(8) :: Abrasiveness
- real(8) :: ThresholdWeight
- real(8) :: PorePressureGradient
- end type CFormationItem
-
- integer :: FormationCount = 0
- type(CFormationItem), allocatable :: Formations(:)
-
- contains
- end module CFormationVariables
|