.Modelica_LinearSystems2.Internal.frequencyVector2

Information

Determine frequency vector for Bode plot (using Real matrices for zeros and poles)

Interface

function frequencyVector2
  import Modelica;
  import Modelica_LinearSystems2.Internal;
  import Modelica.Units.SI;
  input Real Zeros[:, 2] "Zeros as Real matrix (first column: real, second column imaginary values)";
  input Real Poles[:, 2] "Poles as Real matrix (first column: real, second column imaginary values)";
  input Integer nPoints(min = 2) = 200 "Number of points";
  input Boolean autoRange = true "True, if abszissa range is automatically determined";
  input Modelica.Units.SI.Frequency f_min(min = 0) = 0.1 "Minimum frequency value, if autoRange = false" annotation(
    Dialog(enable = not autoRange));
  input Modelica.Units.SI.Frequency f_max(min = 0) = 10 "Maximum frequency value, if autoRange = false" annotation(
    Dialog(enable = not autoRange));
  input Boolean logX = true "=true: logarithmic scale; = false: linear scale of frequency vector";
  output SI.Frequency f[nPoints] "Frequency vector (automatic or manual)";
end frequencyVector2;

Generated at 2024-04-24T18:15:52Z by OpenModelicaOpenModelica 1.22.3 using GenerateDoc.mos