Skip to content

Commit

Permalink
standard types documentation header bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lthurner committed Jan 11, 2017
1 parent ca13c9f commit 8854708
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
*.pyc
.tox/
*~
build/
dist/
Expand Down
4 changes: 2 additions & 2 deletions doc/std_types.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _std_types:

=========================
============================
Standard Type Libraries
==========================
============================

Lines and transformers have two different categories of parameters: parameter that depend on the specific element (like the length of a line or the bus to which a transformer is connected to etc.) and parameter that only
depend on the type of line or transformer which is used (like the rated power of a transformer or the resistance per kilometer line).
Expand Down
5 changes: 5 additions & 0 deletions pandapower/shortcircuit/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
from pandapower.shortcircuit.currents import calc_ikss, calc_ip, calc_ith
from pandapower.shortcircuit.impedance import calc_equiv_sc_impedance
from pandapower.shortcircuit.kappa import calc_kappa
try:
import pplog as logging
except:
import logging
logger = logging.getLogger(__name__)

def runsc(net, case='max', lv_tol_percent=10, network_structure="auto", ip=False, ith=False,
tk_s=1.):
Expand Down

0 comments on commit 8854708

Please sign in to comment.