You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed this with the recent fix of the calc_current_using_line_voltage, _Smj will always return true, need > 0 to get it to correctly print "(-)" when appropriate.
Noticed this with the recent fix of the
calc_current_using_line_voltage
,_Smj
will always return true, need> 0
to get it to correctly print "(-)" when appropriate.Currently:
pyEPR/pyEPR/core_distributed_analysis.py
Line 1028 in 0ac3fa2
Should change to something like:
f'\t{j_name:<15} {pmj_ind:>8.6g}{("(+)"if _Smj > 0 else "(-)"):>5s} {pmj_cap:>8.6g}')
The text was updated successfully, but these errors were encountered: