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.

CFormationVariables.i90 681 B

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