.Modelica_LinearSystems2.Internal.frequencyVector

Information

Determine frequency vector for Bode plot

Interface

function frequencyVector
  import Modelica;
  import Modelica_LinearSystems2.Math.Complex;
  import LinearSystems = Modelica_LinearSystems2;
  import Modelica_LinearSystems2.Internal;
  import Modelica.Units.SI;
  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 Complex numZeros[:] = fill(Complex(0), 0) "Zeros of numerator" annotation(
    Dialog(enable = autoRange));
  input Complex denZeros[:] = fill(Complex(0), 0) "Zeros of denominator" annotation(
    Dialog(enable = 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 frequencyVector;

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