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.

CShoeVariables.f90 284 B

1 year ago
123456789101112
  1. module CShoeVariables
  2. implicit none
  3. public
  4. ! variables
  5. integer :: FormationNo
  6. real(8) :: ShoeDepth
  7. real(8) :: LeakOff
  8. real(8) :: Breakdown
  9. real(8) :: FracturePropagation
  10. logical :: InactiveFracture
  11. contains
  12. end module CShoeVariables