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