Skip to content

Commit

Permalink
fix : filter_range added to dynamic models #127
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 30, 2019
1 parent 2ee4fb2 commit 0b573eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion opem/Dynamic/Padulles1.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def Dynamic_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 = []
Power_List = []
Vstack_List = []
Expand Down
2 changes: 1 addition & 1 deletion opem/Dynamic/Padulles2.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def Dynamic_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 = []
Power_List = []
Vstack_List = []
Expand Down
2 changes: 1 addition & 1 deletion opem/Dynamic/Padulles_Amphlett.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def Dynamic_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 = []
Power_List = []
Vstack_List = []
Expand Down
2 changes: 1 addition & 1 deletion opem/Dynamic/Padulles_Hauer.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def Dynamic_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 = []
Power_List = []
Vstack_List = []
Expand Down

0 comments on commit 0b573eb

Please sign in to comment.