Skip to content
Translational.AccSensor.md

Translational.AccSensor

Ideal sensor to measure the absolute acceleration of flange This component is translated by DyadAI

This component extends from PartialAbsoluteSensor

Usage

TranslatedComponents.Translational.AccSensor()

Connectors

  • flange - This connector represents a mechanical flange with position and force as the potential and flow variables, respectively. (Flange)

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

Variables

NameDescriptionUnits
vAbsolute velocity of flangem/s

Behavior

0=flange.f(t)v(t)=dflange.s(t)dta(t)=dv(t)dt

Source

dyad
# Ideal sensor to measure the absolute acceleration of flange
# This component is translated by DyadAI
component AccSensor
  extends PartialAbsoluteSensor
  a = RealOutput()
  # Absolute velocity of flange
  variable v::Dyad.Velocity
relations
  v = der(flange.s)
  a = der(v)
end
Flattened Source
dyad
# Ideal sensor to measure the absolute acceleration of flange
# This component is translated by DyadAI
component AccSensor
  flange = Flange()
  a = RealOutput()
  # Absolute velocity of flange
  variable v::Dyad.Velocity
relations
  0 = flange.f
  v = der(flange.s)
  a = der(v)
metadata {}
end


Test Cases

No test cases defined.

  • Examples

  • Experiments

  • Analyses