Harmony
HARMONic stabilitY assessment of PE-penetrated power systems
Loading...
Searching...
No Matches
WP_plant.h
Go to the documentation of this file.
1#ifndef WP_PLANT_H_
2#define WP_PLANT_H_
3
9#include "RES_base.h"
10
16class WPplant : public RES_base {
17public:
26 WPplant(const string& symbol, const std::string& location, int turbine_type, int number_WT, const vector<double>& parameters);
27 ~WPplant() override;
28private:
29 RES_base* wind_turbine = nullptr;
30};
31
32#endif // !WP_PLANT_H_
Base class for renewable energy source (RES) plant models.
Common base for wind and PV plant elements.
Definition RES_base.h:16
Wind power plant composed of multiple wind turbine instances.
Definition WP_plant.h:16
~WPplant() override
Definition WP_plant.cpp:30