VariableResistor

model VariableResistor "Ideal linear electrical resistors with variable resistance"
    extends Interfaces.TwoPlug;

    parameter Modelica.SIunits.Temperature T_ref[m] = fill(300.15, m) "Reference temperatures";
    parameter Modelica.SIunits.LinearTemperatureCoefficient alpha[m] = zeros(m) "Temperature coefficients of resistances at reference temperatures";

    extends Modelica.Electrical.MultiPhase.Interfaces.ConditionalHeatPort(final mh = m, T = T_ref);

    Modelica.Blocks.Interfaces.RealInput R[m](each unit = "Ohm") annotation (Placement(
        transformation(
            origin = {0, 120},
            extent = {
                {-20, -20}, 
                {20, 20}},
            rotation = 270),
        iconTransformation(
            extent = {
                {-20, -20}, 
                {20, 20}},
            rotation = 270,
            origin = {0, 120})));
    Modelica.Electrical.Analog.Basic.VariableResistor variableResistor[m](final T_ref = T_ref, final alpha = alpha, each final useHeatPort = useHeatPort) annotation (Placement(transformation(extent = {
        {-10, -10}, 
        {10, 10}})));
equation
    connect(R,variableResistor.R) annotation (Line(
        points = {
            {0, 120}, 
            {0, 56}, 
            {0, 12}},
        color = {0, 0, 255}));
    connect(variableResistor.n,plug_n.pin) annotation (Line(
        points = {
            {10, 0}, 
            {100, 0}},
        color = {0, 0, 255}));
    connect(variableResistor.p,plug_p.pin) annotation (Line(
        points = {
            {-10, 0}, 
            {-100, 0}},
        color = {0, 0, 255}));
    connect(variableResistor.heatPort,heatPort) annotation (Line(
        points = {
            {0, -10}, 
            {0, -100}},
        color = {191, 0, 0}));

    annotation (
        defaultComponentName = "resistor",
        Icon(
            coordinateSystem(
                preserveAspectRatio = false,
                extent = {
                    {-100, -100}, 
                    {100, 100}}),
            graphics = {
                Line(
                    points = {
                        {-90, 0}, 
                        {-70, 0}},
                    color = {0, 0, 255}), 
                Rectangle(
                    extent = {
                        {-70, 30}, 
                        {70, -30}},
                    lineColor = {0, 0, 255},
                    fillColor = {255, 255, 255},
                    fillPattern = FillPattern.Solid), 
                Line(
                    points = {
                        {70, 0}, 
                        {90, 0}},
                    color = {0, 0, 255}), 
                Text(
                    extent = {
                        {-150, -80}, 
                        {150, -40}},
                    textString = "m=%m"), 
                Text(
                    extent = {
                        {-150, 90}, 
                        {150, 50}},
                    textString = "%name",
                    lineColor = {0, 0, 255})}),
        Documentation(info = "<html>\n<p>\nContains m variable resistors (Modelica.Electrical.Analog.Basic.VariableResistor)\n</p>\n<p>\n<strong>Attention!!!</strong><br>\n  It is recommended that none of the R_Port signals should not cross the zero value.\n  Otherwise depending on the surrounding circuit the probability of singularities is high.\n</p>\n</html>"));
end VariableResistor;