Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
1.2 KiB

  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/Problems/CGaugesProblemsVariables.f90"
  2. module CGaugesProblemsVariables
  3. use CProblemDifinition
  4. implicit none
  5. public
  6. type :: GaugesProblemsType
  7. type(CProblem) :: WeightIndicator
  8. type(CProblem) :: RotaryRpm
  9. type(CProblem) :: RotaryTorque
  10. type(CProblem) :: StandPipePressure
  11. type(CProblem) :: CasingPressure
  12. type(CProblem) :: Pump1Strokes
  13. type(CProblem) :: Pump2Strokes
  14. type(CProblem) :: ReturnLineTemperature
  15. type(CProblem) :: TripTank
  16. type(CProblem) :: PitGainLoss
  17. type(CProblem) :: MudTankVolume
  18. type(CProblem) :: ReturnMudFlow
  19. type(CProblem) :: TorqueLimit
  20. type(CProblem) :: PowerLimit
  21. type(CProblem) :: AccumulatorPressure
  22. type(CProblem) :: ManifoldPressure
  23. type(CProblem) :: AnnularPressure
  24. type(CProblem) :: RigAirPressure
  25. type(CProblem) :: StandPipe1
  26. type(CProblem) :: StandPipe2
  27. type(CProblem) :: DrillPipePressure
  28. type(CProblem) :: ChokePosition
  29. type(CProblem) :: CasingPressure2
  30. end type GaugesProblemsType
  31. contains
  32. end module CGaugesProblemsVariables