mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Added noise source model
This commit is contained in:
parent
fedd1260d0
commit
69fcacab07
@ -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;
|
||||
}
|
||||
|
@ -27,6 +27,8 @@ public:
|
||||
~Ampere_noise();
|
||||
Component* newOne();
|
||||
static Element* info(QString&, char* &, bool getNewOne=false);
|
||||
protected:
|
||||
QString va_code();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user