DPsim
Loading...
Searching...
No Matches
Base_Ph3_Capacitor.h
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
9#pragma once
10
11#include <dpsim-models/AttributeList.h>
12#include <dpsim-models/Definitions.h>
13
14namespace CPS {
15namespace Base {
16namespace Ph3 {
17class Capacitor {
18public:
20 const CPS::Attribute<Matrix>::Ptr mCapacitance;
21
22 explicit Capacitor(CPS::AttributeList::Ptr attributeList)
23 : mCapacitance(attributeList->create<Matrix>("C")){};
24
26 void setParameters(Matrix capacitance) { **mCapacitance = capacitance; }
27};
28} // namespace Ph3
29} // namespace Base
30} // namespace CPS
const CPS::Attribute< Matrix >::Ptr mCapacitance
Capacitance [F].
void setParameters(Matrix capacitance)
Sets model specific parameters.