Simulation Core
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
368 B

  1. module CShoeVariables
  2. implicit none
  3. public
  4. ! variables
  5. Type::ShoeType
  6. integer :: FormationNo
  7. real(8) :: ShoeDepth
  8. real(8) :: LeakOff
  9. real(8) :: Breakdown
  10. real(8) :: FracturePropagation
  11. logical :: InactiveFracture
  12. End type ShoeType
  13. ! Type(ShoeType)::Shoe
  14. end module CShoeVariables