We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab1001 commit aa31498Copy full SHA for aa31498
pvlib/tests/test_transformer.py
@@ -15,8 +15,8 @@ def test_simple_transformer():
15
1580687.44677249,
16
1616441.79660171
17
])
18
- no_load_loss_fraction = 0.002
19
- load_loss_fraction = 0.007
+ no_load_loss = 0.002
+ load_loss = 0.007
20
transformer_rating = 2750000
21
22
# define expected test results
@@ -31,8 +31,8 @@ def test_simple_transformer():
31
# run test function with test inputs
32
calculated_output_power = transformer.simple_efficiency(
33
input_power=input_power,
34
- no_load_loss_fraction=no_load_loss_fraction,
35
- load_loss_fraction=load_loss_fraction,
+ no_load_loss=no_load_loss,
+ load_loss=load_loss,
36
transformer_rating=transformer_rating
37
)
38
0 commit comments