在Modelica的生成白噪声(SystemModeler)(Generate white nois

2019-08-17 00:45发布

我试图测量噪声添加到模拟。 这是可能的,例如Simulink的做,但似乎是在Modelica语言和SystemModeler更加困难。

如何做到这一点任何想法?

Answer 1:

另一种方法是使用Modelica.Blocks.Noise避免自己编写的外部代码(在2016年4月3日发布的Modelica标准库3.2.2添加;即当有人问原来的问题就不会帮助)。

的一个好处Modelica.Blocks.Noise是取样,多粒种子,等棘手的问题都解决了。



Answer 2:

您可以在钨SystemModeler通过外部的C代码加入白噪声。

Modelica的代码(我已经移除代码中的注释图,因此,这可能是更容易阅读):

package WhiteNoise "Package for generating white noise"
  extends Modelica.Icons.Library;

  block NoiseNormal "Normally distributed random noise"
    parameter Real mean=0 "Mean value of random noise";
    parameter Real stdev=1 "Standard deviation of random noise";
    parameter Real tSample=0.01 "Noise sample time";
    Modelica.Blocks.Interfaces.RealOutput y;
  equation 
    when initial() then
      WhiteNoise.initRandomNormal();
    end when;
    when sample(0, tSample) then
      y=mean + stdev*WhiteNoise.RandomNormal(time);
    end when;
  end NoiseNormal;

  function initRandomNormal
    external "C" ext_initRandomNormal()   annotation(Include="#include \"ext_initRandNormal.c\"");
  end initRandomNormal;

  function RandomNormal
    output Real y;
    input Real u;
    external "C" y=ext_RandomNormal(u)   annotation(Include="#include \"ext_RandNormal.c\"");
  end RandomNormal;

end WhiteNoise;

外部代码:

ext_intRandNormal.c

#include <math.h>
#include <limits.h>

void ext_initRandomNormal()
{
    srand(time(NULL));
}

ext_RandNormal.c

#include <math.h>
#include <limits.h>
double ext_RandomNormal(double timein)

{
    unsigned int seed = 0;
    double v1, v2, r;

    timein /= 100;
    seed = (timein - floor(timein)) * UINT_MAX;

    do
    {
        v1 = 2 * ((double) rand()) /((double) RAND_MAX) - 1;
        v2 = 2 * ((double) rand()) /((double) RAND_MAX) - 1;
        r = v1 * v1 + v2 * v2;
    } while((r >= 1.0) || (r == 0.0));

    return v1 * sqrt( - 2.0 * log(r) / r );
}


文章来源: Generate white noise in Modelica (SystemModeler)