Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CKickProblemsVariables.i90 508 B

1年前
12345678910111213141516171819
  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/Problems/CKickProblemsVariables.f90"
  2. module CKickProblemsVariables
  3. use CProblemDifinition
  4. implicit none
  5. public
  6. ! Input vars
  7. type :: KickProblemsType
  8. type(CProblem) :: Kick
  9. integer :: FluidType
  10. integer :: FlowRate
  11. integer :: OverBalancePressure
  12. logical :: IsAutoMigrationRateSelected
  13. real(8) :: AutoMigrationRate
  14. end type KickProblemsType
  15. end module CKickProblemsVariables