Added noise source model

This commit is contained in:
Vadim Kuznetzov 2015-08-15 17:27:29 +03:00
parent fedd1260d0
commit 69fcacab07
2 changed files with 14 additions and 0 deletions

View File

@ -16,6 +16,8 @@
***************************************************************************/
#include "ampere_noise.h"
#include "node.h"
#include "extsimkernels/verilogawriter.h"
Ampere_noise::Ampere_noise()
@ -76,3 +78,13 @@ Element* Ampere_noise::info(QString& Name, char* &BitmapFile, bool getNewOne)
if(getNewOne) return new Ampere_noise();
return 0;
}
QString Ampere_noise::va_code()
{
QString u = vacompat::normalize_value(getProperty("i")->Value);
QString e = vacompat::normalize_value(getProperty("e")->Value);
QString s = QString("I(%1,%2) <+ flicker_noise(%3,%4); // %5 noise source \n")
.arg(Ports.at(0)->Connection->Name).arg(Ports.at(1)->Connection->Name)
.arg(u).arg(e).arg(Name);
return s;
}

View File

@ -27,6 +27,8 @@ public:
~Ampere_noise();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
QString va_code();
};
#endif