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ů.

CMudTreatmentProblemsVariables.f90 415 B

před 1 rokem
1234567891011121314151617
  1. module CMudTreatmentProblemsVariables
  2. use CProblemDifinition
  3. implicit none
  4. public
  5. ! Input vars
  6. Type::MudTreatmentProblemsType
  7. type(CProblem) :: Degasser
  8. type(CProblem) :: ShaleShaker
  9. type(CProblem) :: Desander
  10. type(CProblem) :: Desilter
  11. end type MudTreatmentProblemsType
  12. contains
  13. end module CMudTreatmentProblemsVariables