Skip to content
LIBRARY
Analog.Basic.Gyrator.md

Analog.Basic.Gyrator

Gyrator two-port element.

A gyrator couples the voltage of one port to the current of the other via gyration conductances:

i1=G2v2i2=G1v1

Corresponds to Modelica.Electrical.Analog.Basic.Gyrator.

This component extends from ElectricalComponents.Analog.Interfaces.TwoPort

Usage

ElectricalComponents.Analog.Basic.Gyrator(G1=1, G2=1)

Parameters:

NameDescriptionUnitsDefault value
G1Primary gyration conductanceS1
G2Secondary gyration conductanceS1

Connectors

  • p1 - This connector represents an electrical pin with voltage and current as the potential and flow variables, respectively. (Pin)

  • n1 - This connector represents an electrical pin with voltage and current as the potential and flow variables, respectively. (Pin)

  • p2 - This connector represents an electrical pin with voltage and current as the potential and flow variables, respectively. (Pin)

  • n2 - This connector represents an electrical pin with voltage and current as the potential and flow variables, respectively. (Pin)

Variables

NameDescriptionUnits
v1Voltage drop of port 1 (= p1.v - n1.v)V
v2Voltage drop of port 2 (= p2.v - n2.v)V
i1Current flowing from pos. to neg. pin of port 1A
i2Current flowing from pos. to neg. pin of port 2A

Behavior

v1(t)=p1.v(t)n1.v(t)v2(t)=n2.v(t)+p2.v(t)i1(t)=p1.i(t)i2(t)=p2.i(t)0=p1.i(t)+n1.i(t)0=p2.i(t)+n2.i(t)i1(t)=G2 v2(t)i2(t)=G1 v1(t)

Source

dyad
"""
Gyrator two-port element.

A gyrator couples the voltage of one port to the current of the other
via gyration conductances:

math i_1 = G_2 \cdot v_2

math i_2 = -G_1 \cdot v_1


Corresponds to `Modelica.Electrical.Analog.Basic.Gyrator`.
"""
component Gyrator
  extends ElectricalComponents.Analog.Interfaces.TwoPort
  "Primary gyration conductance"
  parameter G1::Conductance = 1
  "Secondary gyration conductance"
  parameter G2::Conductance = 1
relations
  i1 = G2 * v2
  i2 = -G1 * v1
metadata {
  "Dyad": {
    "labels": [{"label": "$(instance)", "x": 500, "y": 1100, "rot": 0}],
    "icons": {"default": "dyad://ElectricalComponents/Gyrator.svg"}
  }
}
end
Flattened Source
dyad
"""
Gyrator two-port element.

A gyrator couples the voltage of one port to the current of the other
via gyration conductances:

math i_1 = G_2 \cdot v_2

math i_2 = -G_1 \cdot v_1


Corresponds to `Modelica.Electrical.Analog.Basic.Gyrator`.
"""
component Gyrator
  "Positive electrical pin of port 1"
  p1 = Pin() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": -40, "y1": -40, "x2": 60, "y2": 60, "rot": 0}
      },
      "tags": []
    }
  }
  "Negative electrical pin of port 1"
  n1 = Pin() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": -40, "y1": 940, "x2": 60, "y2": 1040, "rot": 0}
      },
      "tags": []
    }
  }
  "Positive electrical pin of port 2"
  p2 = Pin() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 960, "y1": -40, "x2": 1060, "y2": 60, "rot": 0}
      },
      "tags": []
    }
  }
  "Negative electrical pin of port 2"
  n2 = Pin() {
    "Dyad": {
      "placement": {
        "diagram": {"iconName": "default", "x1": 960, "y1": 950, "x2": 1060, "y2": 1050, "rot": 0}
      },
      "tags": []
    }
  }
  "Voltage drop of port 1 (= p1.v - n1.v)"
  variable v1::Voltage
  "Voltage drop of port 2 (= p2.v - n2.v)"
  variable v2::Voltage
  "Current flowing from pos. to neg. pin of port 1"
  variable i1::Current
  "Current flowing from pos. to neg. pin of port 2"
  variable i2::Current
  "Primary gyration conductance"
  parameter G1::Conductance = 1
  "Secondary gyration conductance"
  parameter G2::Conductance = 1
relations
  v1 = p1.v - n1.v
  v2 = p2.v - n2.v
  i1 = p1.i
  i2 = p2.i
  0 = p1.i + n1.i
  0 = p2.i + n2.i
  i1 = G2 * v2
  i2 = -G1 * v1
metadata {
  "Dyad": {
    "labels": [{"label": "$(instance)", "x": 500, "y": 1100, "rot": 0}],
    "icons": {"default": "dyad://ElectricalComponents/Gyrator.svg"}
  }
}
end


Test Cases

No test cases defined.