From 73e934c17098281ffccd214f7517cd0f6ce03ab6 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Sat, 14 Jul 2018 09:04:40 -0300 Subject: fault and control system implementation error fixed --- Project/Fault.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Project/Fault.cpp') diff --git a/Project/Fault.cpp b/Project/Fault.cpp index 3d335fd..a71d2ce 100644 --- a/Project/Fault.cpp +++ b/Project/Fault.cpp @@ -34,11 +34,11 @@ bool Fault::RunFaultCalculation(double systemPowerBase) // Get adimittance matrices. std::vector > > yBusPos; - GetYBus(yBusPos, systemPowerBase, POSITIVE_SEQ, true); + GetYBus(yBusPos, systemPowerBase, POSITIVE_SEQ, true, true); std::vector > > yBusNeg; - GetYBus(yBusNeg, systemPowerBase, NEGATIVE_SEQ, true); + GetYBus(yBusNeg, systemPowerBase, NEGATIVE_SEQ, true, true); std::vector > > yBusZero; - GetYBus(yBusZero, systemPowerBase, ZERO_SEQ, true); + GetYBus(yBusZero, systemPowerBase, ZERO_SEQ, true, true); // Calculate the impedance matrices. if(!InvertMatrix(yBusPos, m_zBusPos)) { -- cgit