Simulation Core
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CBitProblemsVariables.f90 377 B

1 년 전
123456789101112131415
  1. module CBitProblemsVariables
  2. use CProblemDifinition
  3. implicit none
  4. public
  5. ! Input vars
  6. type:: BitProblemsType
  7. type(CProblem) :: PlugJets
  8. type(CProblem) :: JetWashout
  9. integer :: PlugJetsCount
  10. integer :: JetWashoutCount
  11. end type BitProblemsType
  12. contains
  13. end module CBitProblemsVariables