From 2b8c8df6d7327705af1284f5b515e1d8f0ce9b40 Mon Sep 17 00:00:00 2001 From: Bichen Li <bichen.li@eonerc.rwth-aachen.de> Date: Wed, 28 Mar 2018 16:39:31 +0200 Subject: [PATCH] - Add the assertion function of Modelica and Neplan - Some changes in Neplan read-in function to keep the unit uniformed with Modelica - Fix some bugs --- dataprocessing/readtools.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dataprocessing/readtools.py b/dataprocessing/readtools.py index 172362e..bd8fec7 100644 --- a/dataprocessing/readtools.py +++ b/dataprocessing/readtools.py @@ -161,6 +161,12 @@ def read_timeseries_dpsim_cmpl_separate(filename, timeseries_names=None): print(result.name) return timeseries_list +import numpy as np +import pandas as pd +from dataprocessing.timeseries import * +import re +import cmath + def read_timeseries_NEPLAN_loadflow(file_name, timeseries_names = None, is_regex = False): str_tmp = open(file_name, "r") # Read in files low = 0 -- GitLab