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#include <dpsim-models/CSVReader.h>
26
27#ifdef WITH_OPENMP
28#include <dpsim/OpenMPLevelScheduler.h>
29#endif
30
31namespace DPsim {
32// #### CPS for users ####
33using SystemTopology = CPS::SystemTopology;
34using SystemNodeList = CPS::TopologicalNode::List;
35using SystemComponentList = CPS::IdentifiedObject::List;
36using Logger = CPS::Logger;
37using Domain = CPS::Domain;
38using PhaseType = CPS::PhaseType;
39#ifdef WITH_CIM
40using CIMReader = CPS::CIM::Reader;
41#endif
42using CSVReader = CPS::CSVReader;
43} // namespace DPsim