Simulation Core
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

15 řádky
377 B

  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