Skip to content

Commit 8792488

Browse files
committed
Fix full load hours
I couldn't reproduce the full load hours previously set (1956.164053) even with older versions of python (checked down to 3.8) and pandas (checked down to 1.3.5), so I assume, that the value was incorrect. It was possibly not checked, as the example tests are not in the tests directory but the example directory.
1 parent 3df5e99 commit 8792488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_turbine_cluster_modelchain_example_flh(self):
4242
)
4343
tc_mc_e.calculate_power_output(weather, example_farm, example_cluster)
4444
assert_allclose(
45-
1956.164053,
45+
2004.84125,
4646
(example_farm.power_output.sum() / example_farm.nominal_power),
4747
0.01,
4848
)

0 commit comments

Comments
 (0)