Translational.MultiSensor
Ideal sensor to measure the absolute velocity, force and power between two flanges This component is translated by DyadAI
This component extends from PartialRelativeSensor
Usage
TranslatedComponents.Translational.MultiSensor()
Connectors
flange_a- This connector represents a mechanical flange with position and force as the potential and flow variables, respectively. (Flange)flange_b- This connector represents a mechanical flange with position and force as the potential and flow variables, respectively. (Flange)power- This connector represents a real signal as an output from a component (RealOutput)f- This connector represents a real signal as an output from a component (RealOutput)v- This connector represents a real signal as an output from a component (RealOutput)
Behavior
Source
# Ideal sensor to measure the absolute velocity, force and power between two flanges
# This component is translated by DyadAI
component MultiSensor
extends PartialRelativeSensor
power = RealOutput()
f = RealOutput()
v = RealOutput()
relations
flange_a.s = flange_b.s
f = flange_a.f
v = der(flange_a.s)
power = f * v
endFlattened Source
# Ideal sensor to measure the absolute velocity, force and power between two flanges
# This component is translated by DyadAI
component MultiSensor
flange_a = Flange()
flange_b = Flange()
power = RealOutput()
f = RealOutput()
v = RealOutput()
relations
0 = flange_a.f + flange_b.f
flange_a.s = flange_b.s
f = flange_a.f
v = der(flange_a.s)
power = f * v
metadata {}
endTest Cases
No test cases defined.
Related
Examples
Experiments
Analyses