Skip to content
Translational.ForceSensor.md

Translational.ForceSensor

Ideal sensor to measure the force between two flanges This component is translated by DyadAI

This component extends from PartialRelativeSensor

Usage

TranslatedComponents.Translational.ForceSensor()

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)

  • f - This connector represents a real signal as an output from a component (RealOutput)

Behavior

0=flange_b.f(t)+flange_a.f(t)flange_a.s(t)=flange_b.s(t)flange_a.f(t)=f(t)

Source

dyad
# Ideal sensor to measure the force between two flanges
# This component is translated by DyadAI
component ForceSensor
  extends PartialRelativeSensor
  f = RealOutput()
relations
  flange_a.s = flange_b.s
  flange_a.f = f
end
Flattened Source
dyad
# Ideal sensor to measure the force between two flanges
# This component is translated by DyadAI
component ForceSensor
  flange_a = Flange()
  flange_b = Flange()
  f = RealOutput()
relations
  0 = flange_a.f + flange_b.f
  flange_a.s = flange_b.s
  flange_a.f = f
metadata {}
end


Test Cases

No test cases defined.

  • Examples

  • Experiments

  • Analyses