Skip to content

Commit 3c93156

Browse files
committed
Update code comments and style.
1 parent f157a2f commit 3c93156

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/Model/PhasorDynamics/SynchronousMachine/GENROUwS/Genrou.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/**
2-
* @file Genrou.hpp
2+
* @file Genrou.cpp
33
* @author Adam Birchfield ([email protected])
44
* @author Slaven Peles ([email protected])
5-
* @brief Definition of a phasor dynamics branch model.
5+
* @brief Definition of a GENROU generator model.
66
*
7-
* The model uses Cartesian coordinates.
87
*
98
*/
109

10+
#include "Genrou.hpp"
11+
1112
#include <cmath>
1213
#include <iostream>
1314

14-
#include "Genrou.hpp"
1515
#include <Model/PhasorDynamics/Bus/Bus.hpp>
1616

1717
namespace GridKit

src/Model/PhasorDynamics/SynchronousMachine/GENROUwS/Genrou.hpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
/* Genrou Component - Adam Birchfield */
1+
/**
2+
* @file Genrou.cpp
3+
* @author Adam Birchfield ([email protected])
4+
* @author Slaven Peles ([email protected])
5+
* @brief Declaration of a GENROU generator model.
6+
*
7+
*/
8+
29
#pragma once
310

411
#define _USE_MATH_DEFINES
@@ -95,7 +102,6 @@ namespace GridKit
95102
}
96103

97104
private:
98-
99105
/* Identification */
100106
bus_type* bus_;
101107
const int busID_;

0 commit comments

Comments
 (0)