From 1413410e20495d0de12cc9bac3e8875d7430a390 Mon Sep 17 00:00:00 2001 From: Le Courtois Florent Date: Thu, 9 Dec 2021 11:11:27 +0100 Subject: [PATCH] #216 Fix typos --- sources/Inputs/include/Node.h | 6 +++--- sources/Outputs/include/Constants.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/Inputs/include/Node.h b/sources/Inputs/include/Node.h index a489b6a7e..4f3de3e17 100644 --- a/sources/Inputs/include/Node.h +++ b/sources/Inputs/include/Node.h @@ -141,13 +141,13 @@ class Tfo { /// @brief Topological shunt struct Shunt { using ShuntId = std::string; ///< alias for shunt id - using BusId = std::string; ///< Alias for bus id regulated by the shunt + using BusId = std::string; ///< Alias for bus id connected to the shunt /** * @brief Construct a new Shunt * * @param id the shunt id - * @param busId the bus regulated by the shunt + * @param busId the connected bus id * @param targetV the target voltage of the shunt * @param voltageRegulationOn whether voltage regulation is enabled for the shunt * @param bs the vector of the susceptance values for the shunt @@ -177,7 +177,7 @@ struct Shunt { const BusId busId; ///< the connected bus of the shunt const double targetV; ///< the target V of the shunt const bool voltageRegulationOn; ///< whether voltage regulation is enabled for the shunt - const std::vector bSections; ///< the vector of the B values for the shunt + const std::vector bSections; ///< the vector of the susceptance values for the shunt const unsigned int sectionNumber; ///< initial section index in sections }; diff --git a/sources/Outputs/include/Constants.h b/sources/Outputs/include/Constants.h index b50e67a75..28e4c60da 100644 --- a/sources/Outputs/include/Constants.h +++ b/sources/Outputs/include/Constants.h @@ -97,7 +97,7 @@ const std::string propSignalNGeneratorFixedPParId{"propSignalNGeneratorFixedP"}; const std::string remoteVControlParId{"remoteVControl"}; ///< PAR id for using remote voltage control const std::string remoteSignalNGeneratorFixedP{"remoteSignalNFixedP"}; ///< PAR id for using remote signal N with fixed P const std::string xmlEncoding{"UTF-8"}; ///< Default encoding for XML outputs files -const std::string diagramTableBPu{"tableBPu"}; ///< Name of the table in b sections diagram files +const std::string diagramTableBPu{"tableBPu"}; ///< Name of the table in susceptance sections diagram files constexpr double powerValueMax = std::numeric_limits::max(); ///< Maximum value for powers, meaning infinite