Skip to content

Commit

Permalink
fix : filter_range added to static models #127
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 30, 2019
1 parent 74aaafc commit 2ee4fb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion opem/Static/Amphlett.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def Static_Analysis(
Precision = opem.Functions.get_precision(IStep)
Output_Dict["Enernst"] = Enernst_Calc(
Input_Dict["T"], Input_Dict["PH2"], Input_Dict["PO2"])
i = Input_Dict["i-start"]
[i, IEnd, IStep] = opem.Functions.filter_range(Input_Dict["i-start"],IEnd,IStep)
I_List = []
Efficiency_List = []
Power_List = []
Expand Down
2 changes: 1 addition & 1 deletion opem/Static/Chamberline_Kim.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def Static_Analysis(
IEnd = Input_Dict["i-stop"]
IStep = Input_Dict["i-step"]
Precision = opem.Functions.get_precision(IStep)
i = Input_Dict["i-start"]
[i, IEnd, IStep] = opem.Functions.filter_range(Input_Dict["i-start"], IEnd, IStep)
I_List = []
Efficiency_List = []
Power_List = []
Expand Down
2 changes: 1 addition & 1 deletion opem/Static/Larminie_Dicks.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def Static_Analysis(
IEnd = Input_Dict["i-stop"]
IStep = Input_Dict["i-step"]
Precision = opem.Functions.get_precision(IStep)
i = Input_Dict["i-start"]
[i, IEnd, IStep] = opem.Functions.filter_range(Input_Dict["i-start"], IEnd, IStep)
I_List = []
Efficiency_List = []
Power_List = []
Expand Down

0 comments on commit 2ee4fb2

Please sign in to comment.