Modelica.Magnetic.FluxTubes.Sensors

Sensors to measure variables in magnetic networks

Information


For analysis of magnetic networks, only magnetic potential differences and magnetic flux are variables of interest. For that reason, a magnetic potential sensor is not provided.

Package Content

NameDescription
Modelica.Magnetic.FluxTubes.Sensors.MagneticPotentialDifferenceSensor MagneticPotentialDifferenceSensor Sensor to measure magnetic potential difference
Modelica.Magnetic.FluxTubes.Sensors.MagneticFluxSensor MagneticFluxSensor Sensor to measure magnetic flux


Modelica.Magnetic.FluxTubes.Sensors.MagneticPotentialDifferenceSensor Modelica.Magnetic.FluxTubes.Sensors.MagneticPotentialDifferenceSensor

Sensor to measure magnetic potential difference

Modelica.Magnetic.FluxTubes.Sensors.MagneticPotentialDifferenceSensor

Information

Extends from Modelica.Icons.RotationalSensor (Icon representing rotational measurement device), Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPortsElementary (Partial component with two magnetic ports p and n for textual programming).

Connectors

TypeNameDescription
PositiveMagneticPortport_pPositive magnetic port
NegativeMagneticPortport_nNegative magnetic port
output RealOutputV_mMagnetic potential difference between ports p and n as output signal

Modelica definition

model MagneticPotentialDifferenceSensor 
  "Sensor to measure magnetic potential difference"
  extends Modelica.Icons.RotationalSensor;
  extends Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPortsElementary;

  Modelica.Blocks.Interfaces.RealOutput V_m 
    "Magnetic potential difference between ports p and n as output signal";
  SI.MagneticFlux Phi "Magnetic flux from port_p to port_n";

equation 
  V_m = port_p.V_m - port_n.V_m;
  Phi = port_p.Phi;
  Phi = 0;
  0 = port_p.Phi + port_n.Phi;

end MagneticPotentialDifferenceSensor;

Modelica.Magnetic.FluxTubes.Sensors.MagneticFluxSensor Modelica.Magnetic.FluxTubes.Sensors.MagneticFluxSensor

Sensor to measure magnetic flux

Modelica.Magnetic.FluxTubes.Sensors.MagneticFluxSensor

Information

Extends from Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPortsElementary (Partial component with two magnetic ports p and n for textual programming), Modelica.Icons.RotationalSensor (Icon representing rotational measurement device).

Connectors

TypeNameDescription
PositiveMagneticPortport_pPositive magnetic port
NegativeMagneticPortport_nNegative magnetic port
output RealOutputPhiMagnetic flux from port p to port n as output signal

Modelica definition

model MagneticFluxSensor "Sensor to measure magnetic flux"
  extends Modelica.Magnetic.FluxTubes.Interfaces.PartialTwoPortsElementary;
  extends Modelica.Icons.RotationalSensor;

  Modelica.Blocks.Interfaces.RealOutput Phi 
    "Magnetic flux from port p to port n as output signal";
equation 
  port_p.V_m = port_n.V_m;
  Phi = port_p.Phi;
  0 = port_p.Phi + port_n.Phi;

end MagneticFluxSensor;

HTML-documentation generated by Dymola Sun Jan 17 21:11:06 2010.