Simulation Core
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

CKickProblemsVariables.f90 442 B

1 yıl önce
123456789101112131415161718
  1. module CKickProblemsVariables
  2. use CProblemDifinition
  3. implicit none
  4. public
  5. ! Input vars
  6. type :: KickProblemsType
  7. type(CProblem) :: Kick
  8. integer :: FluidType
  9. integer :: FlowRate
  10. integer :: OverBalancePressure
  11. logical :: IsAutoMigrationRateSelected
  12. real(8) :: AutoMigrationRate
  13. end type KickProblemsType
  14. end module CKickProblemsVariables