Skip to content
Snippets Groups Projects
Commit 37b4f0e2 authored by Markus Mirz's avatar Markus Mirz
Browse files

added 9-bus example

parent 00489685
No related branches found
No related tags found
No related merge requests found
from dataprocessing.readtools import *
from dataprocessing.timeseries import *
path = 'C:\\Users\\mmi\\git\\PowerSystemSimulation\\DPsim\\VisualStudio\\DPsimVS2017\\'
logName = 'lvector-cim';
dataType = '.csv';
logFilename = path + logName + dataType;
ts_dpsim = read_timeseries_dpsim_cmpl(logFilename)
for ts in ts_dpsim:
ts_abs = ts.abs(ts.name + ' abs')
ts_phase = ts.phase(ts.name + ' phase')
print(ts.name + ': ' + str(ts_abs.values[0]) + '<' + str(ts_phase.values[0] * 180/np.pi))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment