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.

CAccumulatorVariables.i90 705 B

12345678910111213141516171819
  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/BasicInputs/RigSpecifications/CAccumulatorVariables.f90"
  2. module CAccumulatorVariables
  3. implicit none
  4. public
  5. Type:: AccumulatorType
  6. integer :: NumberOfBottels
  7. real(8) :: AccumulatorSystemSize
  8. real(8) :: OilTankVolume
  9. real(8) :: PrechargePressure
  10. real(8) :: AccumulatorMinimumOperatingPressure
  11. real(8) :: ElectricPumpOutput
  12. real(8) :: StartPressure
  13. real(8) :: StopPressure
  14. real(8) :: AirPlungerPumpOutput
  15. real(8) :: StartPressure2
  16. real(8) :: StopPressure2
  17. End Type AccumulatorType
  18. ! Type(AccumulatorType)::Accumulator
  19. end module CAccumulatorVariables