9 #include <dpsim-models/SP/SP_Ph3_Inductor.h>
16 mPhaseType = PhaseType::ABC;
23 auto copy = Inductor::make(name, mLogLevel);
24 copy->setParameters(**mInductance);
30 Real omega = 2 * PI * frequency;
31 MatrixComp reactance = MatrixComp::Zero(3, 3);
32 reactance << Complex(0, omega * (**mInductance)(0, 0)),
33 Complex(0, omega * (**mInductance)(0, 1)),
34 Complex(0, omega * (**mInductance)(0, 2)),
35 Complex(0, omega * (**mInductance)(1, 0)),
36 Complex(0, omega * (**mInductance)(1, 1)),
37 Complex(0, omega * (**mInductance)(1, 2)),
38 Complex(0, omega * (**mInductance)(2, 0)),
39 Complex(0, omega * (**mInductance)(2, 1)),
40 Complex(0, omega * (**mInductance)(2, 2));
41 mSusceptance = reactance.inverse();
44 (**mIntfVoltage)(0, 0) = initialSingleVoltage(1) - initialSingleVoltage(0);
45 (**mIntfVoltage)(1, 0) = (**mIntfVoltage)(0, 0) *
46 Complex(cos(-2. / 3. * M_PI), sin(-2. / 3. * M_PI));
47 (**mIntfVoltage)(2, 0) = (**mIntfVoltage)(0, 0) *
48 Complex(cos(2. / 3. * M_PI), sin(2. / 3. * M_PI));
49 **mIntfCurrent = mSusceptance * **mIntfVoltage;
51 SPDLOG_LOGGER_INFO(mSLog,
"--- Initialize according to power flow ---");
69 updateMatrixNodeIndices();
80 SparseMatrixRow &systemMatrix) {
81 MNAStampUtils::stampAdmittanceMatrix(
82 mSusceptance, systemMatrix, matrixNodeIndex(0), matrixNodeIndex(1),
83 terminalNotGrounded(0), terminalNotGrounded(1), mSLog);
87 AttributeBase::List &prevStepDependencies,
88 AttributeBase::List &attributeDependencies,
89 AttributeBase::List &modifiedAttributes,
91 attributeDependencies.push_back(leftVector);
92 modifiedAttributes.push_back(mIntfVoltage);
93 modifiedAttributes.push_back(mIntfCurrent);
96 void SP::Ph3::Inductor::mnaCompPostStep(Real time, Int timeStepCount,
98 mnaCompUpdateVoltage(**leftVector);
99 mnaCompUpdateCurrent(**leftVector);
104 **mIntfVoltage = Matrix::Zero(3, 1);
105 if (terminalNotGrounded(1)) {
106 (**mIntfVoltage)(0, 0) =
107 Math::complexFromVectorElement(leftVector, matrixNodeIndex(1, 0));
108 (**mIntfVoltage)(1, 0) =
109 Math::complexFromVectorElement(leftVector, matrixNodeIndex(1, 1));
110 (**mIntfVoltage)(2, 0) =
111 Math::complexFromVectorElement(leftVector, matrixNodeIndex(1, 2));
113 if (terminalNotGrounded(0)) {
114 (**mIntfVoltage)(0, 0) =
115 (**mIntfVoltage)(0, 0) -
116 Math::complexFromVectorElement(leftVector, matrixNodeIndex(0, 0));
117 (**mIntfVoltage)(1, 0) =
118 (**mIntfVoltage)(1, 0) -
119 Math::complexFromVectorElement(leftVector, matrixNodeIndex(0, 1));
120 (**mIntfVoltage)(2, 0) =
121 (**mIntfVoltage)(2, 0) -
122 Math::complexFromVectorElement(leftVector, matrixNodeIndex(0, 2));
127 **mIntfCurrent = mSusceptance * **mIntfVoltage;
131 void SP::Ph3::Inductor::mnaTearApplyMatrixStamp(SparseMatrixRow &tearMatrix) {
133 Math::addToMatrixElement(tearMatrix, mTearIdx, mTearIdx,
134 1. / mSusceptance(0, 0));
135 Math::addToMatrixElement(tearMatrix, mTearIdx, mTearIdx,
136 1. / mSusceptance(1, 0));
137 Math::addToMatrixElement(tearMatrix, mTearIdx, mTearIdx,
138 1. / mSusceptance(2, 0));
Base class for all MNA components that are transmitting power.
void initializeFromNodesAndTerminals(Real frequency) override
Initializes component from power flow data.
SimPowerComp< Complex >::Ptr clone(String name) override
Returns a modified copy of the component with the given suffix added to the name and without.
void mnaCompInitialize(Real omega, Real timeStep, Attribute< Matrix >::Ptr leftVector) override
Initializes internal variables of the component.
void mnaCompUpdateCurrent(const Matrix &leftVector) override
Update interface current from MNA system result.
void mnaCompAddPostStepDependencies(AttributeBase::List &prevStepDependencies, AttributeBase::List &attributeDependencies, AttributeBase::List &modifiedAttributes, Attribute< Matrix >::Ptr &leftVector) override
Add MNA post step dependencies.
Inductor(String uid, String name, Logger::Level logLevel=Logger::Level::off)
Defines UID, name, component parameters and logging level.
void mnaCompUpdateVoltage(const Matrix &leftVector) override
Update interface voltage from MNA system result.
void mnaCompApplySystemMatrixStamp(SparseMatrixRow &systemMatrix) override
Stamps system matrix.
Base class for all components that are transmitting power.
const Attribute< MatrixVar< Complex > >::Ptr mIntfCurrent
Current through component.
const Attribute< MatrixVar< Complex > >::Ptr mIntfVoltage
Voltage between terminals.