within AixLib.Systems.HydraulicModules.BaseClasses; expandable connector HydraulicBus "Data bus for hydraulic circuits" extends Modelica.Icons.SignalBus; import Modelica.Units.SI; AixLib.Fluid.Movers.PumpsPolynomialBased.BaseClasses.PumpBus pumpBus; Real valveSet(min=0, max=1) "Valve opening setpoint 0..1"; Real valveMea(min=0, max=1) "Actual valve opening 0..1"; SI.Temperature TFwrdInMea "Flow Temperature into forward line"; SI.Temperature TFwrdOutMea "Flow Temperature out of forward line"; SI.Temperature TRtrnInMea "Temperature into return line"; SI.Temperature TRtrnOutMea "Temperature out of return line"; SI.VolumeFlowRate VFlowInMea "Volume flow into forward line"; SI.VolumeFlowRate VFlowOutMea "Volume flow out of forward line"; annotation ( Icon(graphics, coordinateSystem(preserveAspectRatio=false)), Diagram(graphics, coordinateSystem(preserveAspectRatio=false)), Documentation(info="

Definition of a standard bus connector for hydraulic modules. A module bus should contain all the information that is necessary to exchange within a particular module type.

")); end HydraulicBus;