Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- 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
|