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.
 
 
 
 
 
 

16 lines
428 B

  1. # 1 "/home/admin/SimulationCore2/CSharp/BasicInputs/Geology/CShoeVariables.f90"
  2. module CShoeVariables
  3. implicit none
  4. public
  5. ! variables
  6. Type::ShoeType
  7. integer :: FormationNo
  8. real(8) :: ShoeDepth
  9. real(8) :: LeakOff
  10. real(8) :: Breakdown
  11. real(8) :: FracturePropagation
  12. logical :: InactiveFracture
  13. End type ShoeType
  14. ! Type(ShoeType)::Shoe
  15. end module CShoeVariables