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
490 B

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