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
Background
The positive_charge function in the read battery_model.py file appears to constrain Eout when the S < Rmax.
Current Behavior
Currently the battery is exporting more power than it can hold. for example; When S = 100, RMax = 250 and eta = 0.90, Eout currently equals 105
Expected Behavior
the desired output should be as follows; When S = 100, RMax = 250 and eta = 0.90, Eout should equal 95
Possible Solution
In the positive_charge function switch the operator from divide to multiply
The text was updated successfully, but these errors were encountered:
Background
The positive_charge function in the read battery_model.py file appears to constrain Eout when the S < Rmax.
Current Behavior
Currently the battery is exporting more power than it can hold. for example; When S = 100, RMax = 250 and eta = 0.90, Eout currently equals 105
Expected Behavior
the desired output should be as follows; When S = 100, RMax = 250 and eta = 0.90, Eout should equal 95
Possible Solution
In the positive_charge function switch the operator from divide to multiply
The text was updated successfully, but these errors were encountered: