From 3750a0691f4975045647f3f70d8215fb1884e6fb Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Thu, 29 Dec 2016 14:07:52 -0200 Subject: Text element paste bug corrected --- Project/PowerFlow.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Project/PowerFlow.cpp') diff --git a/Project/PowerFlow.cpp b/Project/PowerFlow.cpp index 023ce26..c94d8d8 100644 --- a/Project/PowerFlow.cpp +++ b/Project/PowerFlow.cpp @@ -278,13 +278,5 @@ bool PowerFlow::RunGaussSeidel(double systemPowerBase, UpdateElementsPowerFlow(voltage, power, oldBusType, reactiveLimit, systemPowerBase); - wxString str = ""; - for(auto itb = m_busList.begin(); itb != m_busList.end(); itb++) { - Bus* bus = *itb; - BusElectricalData data = bus->GetEletricalData(); - str += wxString::Format("%.5f/_%.2f\n", std::abs(data.voltage), wxRadToDeg(std::arg(data.voltage))); - } - wxLogMessage(str); - return true; } -- cgit