Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- module CPumpProblemsVariables
- use CProblemDifinition
- implicit none
- public
-
- ! Input vars
- type :: PumpProblemsType
- type(CProblem) :: Pump1PowerFail
- type(CProblem) :: Pump1BlowPopOffValve
- type(CProblem) :: Pump2PowerFail
- type(CProblem) :: Pump2BlowPopOffValve
- type(CProblem) :: CementPumpPowerFail
- type(CProblem) :: CementPumpBlowPopOffValve
- end type PumpProblemsType
-
- contains
-
-
- end module CPumpProblemsVariables
|