DPsim
Loading...
Searching...
No Matches
SP_Ph1_PQNode.cpp
Go to the documentation of this file.
1/* Copyright 2017-2021 Institute for Automation of Complex Power Systems,
2 * EONERC, RWTH Aachen University
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 *********************************************************************************/
8
10
11using namespace CPS;
12
14 : SimPowerComp<Complex>(uid, name, logLevel),
15 mPower(mAttributes->create<Real>("P")),
16 mReactivePower(mAttributes->create<Real>("Q")),
17 mPowerNom(mAttributes->create<Real>("P_nom")),
18 mReactivePowerNom(mAttributes->create<Real>("Q_nom")) {}
19
21 Real reactive_power, Logger::Level logLevel)
22 : PQNode(uid, name, logLevel) {
23
24 **mPower = power;
25 **mPowerNom = power;
26 **mReactivePower = reactive_power;
27 **mReactivePowerNom = reactive_power;
28
29 SPDLOG_LOGGER_INFO(mSLog, "Create PQ node for {} P={}, Q={}", name,
31}
String uid()
Returns unique id.
AttributeList::Ptr mAttributes
Attribute List.
spdlog::level::level_enum Level
Definition Logger.h:33
const Attribute< Real >::Ptr mPower
const Attribute< Real >::Ptr mPowerNom
const Attribute< Real >::Ptr mReactivePowerNom
PQNode(String uid, String name, Logger::Level logLevel=Logger::Level::off)
const Attribute< Real >::Ptr mReactivePower
SimPowerComp(String uid, String name, Logger::Level logLevel=Logger::Level::off)
Logger::Log mSLog
Component logger.
std::string String
Definition Definitions.h:65
double Real
Definition Definitions.h:62
std::complex< Real > Complex
Definition Definitions.h:63