Skip to content

Commit

Permalink
shortcircuit examples, setup requirements, authors
Browse files Browse the repository at this point in the history
  • Loading branch information
lthurner committed Jan 11, 2017
1 parent 43f0f54 commit 20a10ca
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 15 deletions.
20 changes: 11 additions & 9 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
Copyright (c) 2016 by University of Kassel and Fraunhofer Institute for Wind Energy and Energy System Technology (IWES) Kassel. All rights reserved.

Main Authors:
Lead Developers:
- Leon Thurner
- Alexander Scheidler

Main Contributers:
- Julian Dollichon
- Friederike Meier
- Florian Schäfer
- Friederike Meier
- Jan-Hendrik Menke
- Steffen Meinecke

Contributors:
Coordination:
- Martin Braun
- Johann-Christian Töbermann
- Stefan Gehler

Thanks to:
- Tobias Deß
- Bastian Junker
- Jannis Kupka
- Lothar Löwer
- Steffen Meinecke
- Jan Ulffers

Supervision:
- Martin Braun
- Johann-Christian Töbermann
- Stefan Gehler
15 changes: 10 additions & 5 deletions doc/shortcircuit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,14 @@ Additional to the standard load flow parameters, the following parameters have t

.. code:: python
import shortcircuit as sc
import networks as nw
import pandapower.shortcircuit as sc
import pandapower.networks as nw
net = nw.mv_oberrhein()
net.ext_grid["s_sc_min_mva"] = 100
net.ext_grid["rx_min"] = 0.1
net.line["endtemp_degree"] = 20
sc.runsc(net, case="min")
print(net.res_bus_sc)
net = nw.mv_network("ring")
sc.runsc(net, case="min", ip=True)
print(net.res_bus.loc[1,5,10])
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
"scipy",
"pandas",
"networkx",
"numba>=0.25.0"],
"numba>=0.25.0",
"matplotlib",
"xlrd",
"openpyxl"],
packages=find_packages(),
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 20a10ca

Please sign in to comment.