DPsim
Loading...
Searching...
No Matches
SP_Ph1_VDNode.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 mDeltaSetPoint(mAttributes->create<Real>("Delta_set")),
16 mVoltageSetPointPerUnit(mAttributes->create<Real>("V_set_pu")) {}
17
19 Logger::Level logLevel)
20 : VDNode(uid, name, logLevel) {
21
22 **mVoltageSetPointPerUnit = vSetPointPerUnit;
23 **mDeltaSetPoint = 0.;
24}
25
27 Real delta, Logger::Level logLevel)
28 : VDNode(uid, name, logLevel) {
29
30 **mVoltageSetPointPerUnit = vSetPointPerUnit;
31 **mDeltaSetPoint = delta;
32}
String uid()
Returns unique id.
AttributeList::Ptr mAttributes
Attribute List.
spdlog::level::level_enum Level
Definition Logger.h:33
VDNode(String uid, String name, Logger::Level logLevel=Logger::Level::off)
const Attribute< Real >::Ptr mVoltageSetPointPerUnit
const Attribute< Real >::Ptr mDeltaSetPoint
CHECK: This seems to never be read anywhere.
SimPowerComp(String uid, String name, Logger::Level logLevel=Logger::Level::off)
std::string String
Definition Definitions.h:65
double Real
Definition Definitions.h:62
std::complex< Real > Complex
Definition Definitions.h:63