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.
 
 
 
 
 
 

18 lines
619 B

  1. module CAccumulatorVariables
  2. implicit none
  3. public
  4. Type:: AccumulatorType
  5. integer :: NumberOfBottels
  6. real(8) :: AccumulatorSystemSize
  7. real(8) :: OilTankVolume
  8. real(8) :: PrechargePressure
  9. real(8) :: AccumulatorMinimumOperatingPressure
  10. real(8) :: ElectricPumpOutput
  11. real(8) :: StartPressure
  12. real(8) :: StopPressure
  13. real(8) :: AirPlungerPumpOutput
  14. real(8) :: StartPressure2
  15. real(8) :: StopPressure2
  16. End Type AccumulatorType
  17. ! Type(AccumulatorType)::Accumulator
  18. end module CAccumulatorVariables