Skip to content
LIBRARY
Interfaces.PartialElementaryOneFlangeAndSupport2.md

Interfaces.PartialElementaryOneFlangeAndSupport2

Partial model for a component with one translational 1D flange and a support.

This partial component provides a single translational flange and a support flange. The variable s represents the distance between the flange and the support:

s=flange.ssupport.s

The force balance ensures the reaction force is transmitted to the support:

support.f=flange.f

In the MSL, the support connector is conditional (useSupport). Here, the support is always present. To model a grounded support, connect it to a Fixed component.

Usage

TranslationalComponents.Interfaces.PartialElementaryOneFlangeAndSupport2()

Connectors

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

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

Variables

NameDescriptionUnits
sDistance between flange and support (= flange.s - support.s)m

Source

dyad
"""
Partial model for a component with one translational 1D flange and a support.

This partial component provides a single translational flange and a support flange.
The variable `s` represents the distance between the flange and the support:
```math
s = flange.s - support.s
```
The force balance ensures the reaction force is transmitted to the support:
```math
support.f = -flange.f
```
In the MSL, the support connector is conditional (`useSupport`). Here, the support
is always present. To model a grounded support, connect it to a `Fixed` component.
"""
partial component PartialElementaryOneFlangeAndSupport2
  "Flange of component"
  flange = Flange() {"Dyad": {"placement": {"icon": {"x1": 950, "y1": 450, "x2": 1050, "y2": 550}}}}
  "Support/housing of component"
  support = Flange() {"Dyad": {"placement": {"icon": {"x1": 450, "y1": 950, "x2": 550, "y2": 1050}}}}
  "Distance between flange and support (= flange.s - support.s)"
  variable s::Length
relations
  s = flange.s - support.s
  support.f = -flange.f
end
Flattened Source
dyad
"""
Partial model for a component with one translational 1D flange and a support.

This partial component provides a single translational flange and a support flange.
The variable `s` represents the distance between the flange and the support:
```math
s = flange.s - support.s
```
The force balance ensures the reaction force is transmitted to the support:
```math
support.f = -flange.f
```
In the MSL, the support connector is conditional (`useSupport`). Here, the support
is always present. To model a grounded support, connect it to a `Fixed` component.
"""
partial component PartialElementaryOneFlangeAndSupport2
  "Flange of component"
  flange = Flange() {"Dyad": {"placement": {"icon": {"x1": 950, "y1": 450, "x2": 1050, "y2": 550}}}}
  "Support/housing of component"
  support = Flange() {"Dyad": {"placement": {"icon": {"x1": 450, "y1": 950, "x2": 550, "y2": 1050}}}}
  "Distance between flange and support (= flange.s - support.s)"
  variable s::Length
relations
  s = flange.s - support.s
  support.f = -flange.f
metadata {}
end


Test Cases

No test cases defined.

  • Examples

  • Experiments

  • Analyses