SLIDE  3.0.0
A simulator for lithium-ion battery pack degradation
Loading...
Searching...
No Matches
Converter.hpp
Go to the documentation of this file.
1/*
2 * Converter.hpp
3 *
4 * Class for a power electronic converter.
5 * Based on paper from Patsios: two-stage converter (variable DC / fixed DC and fixed DC to fixed AC)
6 *
7 * Created on: 10 Jun 2020
8 * Author(s): Jorn Reniers, Volkan Kumtepeli
9 */
10
11#pragma once
12
13namespace slide {
15{
16private:
17 double Vdc;
18 double Vac;
19 double Pnom;
20public:
21 Converter();
22
23 void setPower(double Pnom);
24 double getLosses(double Vin, double Iin);
25};
26} // namespace slide
Definition: Converter.hpp:15
double getLosses(double Vin, double Iin)
Definition: Converter.cpp:30
void setPower(double Pnom)
Definition: Converter.cpp:25
Converter()
Definition: Converter.cpp:19
Slide namespace contains all the types, classes, and functions for the simulation framework.
Definition: Cell.hpp:27