mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Added capacitor model
This commit is contained in:
parent
105ba9d493
commit
a70e98c1dc
@ -19,6 +19,7 @@
|
||||
#include "node.h"
|
||||
#include "misc.h"
|
||||
#include "extsimkernels/spicecompat.h"
|
||||
#include "extsimkernels/verilogawriter.h"
|
||||
|
||||
|
||||
Capacitor::Capacitor()
|
||||
@ -72,6 +73,13 @@ QString Capacitor::spice_netlist(bool)
|
||||
return s+'\n';
|
||||
}
|
||||
|
||||
QString Capacitor::va_code()
|
||||
{
|
||||
QString val = vacompat::normalize_value(Props.at(0)->Value);
|
||||
return QString("I(%1,%2) <+ ddt(V(%1,%2)*(%3));\n").arg(Ports.at(0)->Connection->Name)
|
||||
.arg(Ports.at(1)->Connection->Name).arg(val);
|
||||
}
|
||||
|
||||
void Capacitor::createSymbol()
|
||||
{
|
||||
if(Props.getLast()->Value.at(0) == 'n') {
|
||||
|
@ -31,6 +31,7 @@ public:
|
||||
protected:
|
||||
void createSymbol();
|
||||
QString spice_netlist(bool isXyce = false);
|
||||
QString va_code();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user