Modelica_Magnetic.Interfaces

Interfaces of magnetic network components

Information


This package contains connectors for the magnetic domain, partial models for lumped magnetic network components and a partial model with connectors for a one-phase electro-mechanical translatory actuator.

Package Content

NameDescription
Modelica_Magnetic.Interfaces.MagneticPort MagneticPort Generic magnetic port
Modelica_Magnetic.Interfaces.PositiveMagneticPort PositiveMagneticPort Positive magnetic port
Modelica_Magnetic.Interfaces.NegativeMagneticPort NegativeMagneticPort Negative magnetic port
Modelica_Magnetic.Interfaces.TwoMagneticPorts TwoMagneticPorts Partial component with two magnetic ports p and n
Modelica_Magnetic.Interfaces.TwoPortComponent TwoPortComponent Partial component with magnetic potential difference between two magnetic ports p and n and magnetic flux Phi from p to n
Modelica_Magnetic.Interfaces.ElectromechanicalActuator ElectromechanicalActuator Connectors of a generic translatory actuator with one electrical phase


Modelica_Magnetic.Interfaces.MagneticPort Modelica_Magnetic.Interfaces.MagneticPort

Generic magnetic port

Modelica_Magnetic.Interfaces.MagneticPort

Contents

TypeNameDescription
MagneticPotentialV_magMagnetic potential at the port [A]
flow MagneticFluxPhiMagnetic flux flowing into the port [Wb]

Modelica definition

connector MagneticPort "Generic magnetic port" 
  SI.MagneticPotential V_mag "Magnetic potential at the port";
  flow SI.MagneticFlux Phi "Magnetic flux flowing into the port";
  
end MagneticPort;

Modelica_Magnetic.Interfaces.PositiveMagneticPort Modelica_Magnetic.Interfaces.PositiveMagneticPort

Positive magnetic port

Modelica_Magnetic.Interfaces.PositiveMagneticPort

Contents

TypeNameDescription
MagneticPotentialV_magMagnetic potential at the port [A]
flow MagneticFluxPhiMagnetic flux flowing into the port [Wb]

Modelica definition

connector PositiveMagneticPort "Positive magnetic port" 
  SI.MagneticPotential V_mag "Magnetic potential at the port";
  flow SI.MagneticFlux Phi "Magnetic flux flowing into the port";
  
  
end PositiveMagneticPort;

Modelica_Magnetic.Interfaces.NegativeMagneticPort Modelica_Magnetic.Interfaces.NegativeMagneticPort

Negative magnetic port

Modelica_Magnetic.Interfaces.NegativeMagneticPort

Contents

TypeNameDescription
MagneticPotentialV_magMagnetic potential at the port [A]
flow MagneticFluxPhiMagnetic flux flowing into the port [Wb]

Modelica definition

connector NegativeMagneticPort "Negative magnetic port" 
  SI.MagneticPotential V_mag "Magnetic potential at the port";
  flow SI.MagneticFlux Phi "Magnetic flux flowing into the port";
  
  
end NegativeMagneticPort;

Modelica_Magnetic.Interfaces.TwoMagneticPorts Modelica_Magnetic.Interfaces.TwoMagneticPorts

Partial component with two magnetic ports p and n

Modelica_Magnetic.Interfaces.TwoMagneticPorts

Information


Partial model of a flux tube component with two magnetic ports: the positive port connector p, and the negative port connector n.


Connectors

TypeNameDescription
PositiveMagneticPortpPositive magnetic port
NegativeMagneticPortnNegative magnetic port

Modelica definition

partial model TwoMagneticPorts 
  "Partial component with two magnetic ports p and n" 
  
  PositiveMagneticPort p "Positive magnetic port";
  NegativeMagneticPort n "Negative magnetic port";
  
equation 
  
end TwoMagneticPorts;

Modelica_Magnetic.Interfaces.TwoPortComponent Modelica_Magnetic.Interfaces.TwoPortComponent

Partial component with magnetic potential difference between two magnetic ports p and n and magnetic flux Phi from p to n

Modelica_Magnetic.Interfaces.TwoPortComponent

Information


It is assumed that the magnetic flux flowing into pin p is identical to the flux flowing out of pin n. This magnetic flux is provided explicitly as flux Phi.


Connectors

TypeNameDescription
PositiveMagneticPortpPositive magnetic port
NegativeMagneticPortnNegative magnetic port

Modelica definition

partial model TwoPortComponent 
  "Partial component with magnetic potential difference between two magnetic ports p and n and magnetic flux Phi from p to n" 
  
  extends TwoMagneticPorts;
  
  SI.MagneticPotentialDifference V_mag 
    "Magnetic potential difference between both ports";
  SI.MagneticFlux Phi "Magnetic flux from port p to port n";
  
equation 
  V_mag = p.V_mag - n.V_mag;
  Phi = p.Phi;
  0 = p.Phi + n.Phi;
  
end TwoPortComponent;

Modelica_Magnetic.Interfaces.ElectromechanicalActuator Modelica_Magnetic.Interfaces.ElectromechanicalActuator

Connectors of a generic translatory actuator with one electrical phase

Modelica_Magnetic.Interfaces.ElectromechanicalActuator

Information


This partial model defines connectors for any kind of electro-mechanical actuator with translatory motion and one electrical phase (e.g. electrodynamic, electromagnetic, piezoelectric and thermal actuators).


Connectors

TypeNameDescription
NegativePinnElectrical connector
PositivePinpElectrical connector
Flange_aflangeFlange for connection to translatory load

Modelica definition

partial model ElectromechanicalActuator 
  "Connectors of a generic translatory actuator with one electrical phase" 
  
  Modelica.Electrical.Analog.Interfaces.NegativePin n "Electrical connector";
  Modelica.Electrical.Analog.Interfaces.PositivePin p "Electrical connector";
  Modelica.Mechanics.Translational.Interfaces.Flange_a flange 
    "Flange for connection to translatory load";
end ElectromechanicalActuator;

HTML-documentation generated by Dymola Thu Oct 11 17:08:24 2007.