DPsim
Loading...
Searching...
No Matches
DPsim.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#include <dpsim/Config.h>
10#include <dpsim/Simulation.h>
11#include <dpsim/Utils.h>
12
13#ifndef _MSC_VER
14#include <dpsim/RealTimeDataLogger.h>
15#include <dpsim/RealTimeSimulation.h>
16#endif
17
18#include <dpsim-models/Components.h>
19#include <dpsim-models/Logger.h>
20
21#ifdef WITH_CIM
22#include <dpsim-models/CIM/Reader.h>
23#endif
24
25#ifdef WITH_OPENMP
26#include <dpsim/OpenMPLevelScheduler.h>
27#endif
28
29namespace DPsim {
30// #### CPS for users ####
31using SystemTopology = CPS::SystemTopology;
32using SystemNodeList = CPS::TopologicalNode::List;
33using SystemComponentList = CPS::IdentifiedObject::List;
34using Logger = CPS::Logger;
35using Domain = CPS::Domain;
36using PhaseType = CPS::PhaseType;
37#ifdef WITH_CIM
38using CIMReader = CPS::CIM::Reader;
39#endif
40} // namespace DPsim