summaryrefslogtreecommitdiffstats
path: root/Project/GraphAutoLayout.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2019-04-25 01:25:41 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2019-04-25 01:25:41 -0300
commit2771fff79ac9c3c09b70f4668e7142b2e944d1f2 (patch)
treec55b0780b0da2ac270df16c5b92d7fc243ea0756 /Project/GraphAutoLayout.h
parentfdb50c49b323edf16ce72c7ee2c678aa1ac99777 (diff)
downloadPSP.git-2771fff79ac9c3c09b70f4668e7142b2e944d1f2.tar.gz
PSP.git-2771fff79ac9c3c09b70f4668e7142b2e944d1f2.tar.xz
PSP.git-2771fff79ac9c3c09b70f4668e7142b2e944d1f2.zip
Matpower Importer and power quality calculation
Power quality in implementation
Diffstat (limited to 'Project/GraphAutoLayout.h')
-rw-r--r--Project/GraphAutoLayout.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/Project/GraphAutoLayout.h b/Project/GraphAutoLayout.h
new file mode 100644
index 0000000..4d42752
--- /dev/null
+++ b/Project/GraphAutoLayout.h
@@ -0,0 +1,46 @@
+// Code based in: "Weighted graphs: generate a layout in C++"
+// https://rodic.fr/blog/c-weighted-graph-layout-fruchterman-reingold/
+
+#ifndef GRAPHAUTOLAYOUT_H
+#define GRAPHAUTOLAYOUT_H
+
+#include <cmath>
+//#include <vector>
+#include <wx/gdicmn.h>
+#include <wx/progdlg.h>
+
+// class ParseMatpower;
+#include "ImportForm.h"
+
+class GraphAutoLayout
+{
+ public:
+ struct GraphLayoutNode {
+ wxRealPoint position;
+ wxRealPoint displacement;
+ };
+
+ struct GraphLayoutEdge {
+ GraphLayoutNode &node1;
+ GraphLayoutNode &node2;
+ float weight;
+ };
+
+ GraphAutoLayout();
+ GraphAutoLayout(std::vector<ParseMatpower::BusData*> busData, std::vector<ParseMatpower::BranchData*> branchData);
+ ~GraphAutoLayout();
+
+ void CalculatePositions(int iterations, double scale);
+
+ protected:
+ void AddLink(size_t index1, size_t index2, float weight = 1.f);
+ void Compute(size_t iterations);
+
+ std::vector<GraphLayoutNode> m_nodes;
+ std::vector<GraphLayoutEdge> m_edges;
+
+ std::vector<ParseMatpower::BusData*> m_busData;
+ std::vector<ParseMatpower::BranchData*> m_branchData;
+};
+
+#endif // GRAPHAUTOLAYOUT_H