foxes 0.8.1__py3-none-any.whl → 1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of foxes might be problematic. Click here for more details.

Files changed (175) hide show
  1. docs/source/conf.py +353 -0
  2. examples/abl_states/run.py +160 -0
  3. examples/compare_rotors_pwakes/run.py +217 -0
  4. examples/compare_wakes/run.py +241 -0
  5. examples/dyn_wakes/run.py +311 -0
  6. examples/field_data_nc/run.py +121 -0
  7. examples/induction_RHB/run.py +201 -0
  8. examples/multi_height/run.py +113 -0
  9. examples/power_mask/run.py +249 -0
  10. examples/random_timeseries/run.py +210 -0
  11. examples/scan_row/run.py +193 -0
  12. examples/sector_management/run.py +162 -0
  13. examples/sequential/run.py +209 -0
  14. examples/single_state/run.py +201 -0
  15. examples/states_lookup_table/run.py +137 -0
  16. examples/streamline_wakes/run.py +138 -0
  17. examples/tab_file/run.py +142 -0
  18. examples/timelines/run.py +267 -0
  19. examples/timeseries/run.py +183 -0
  20. examples/timeseries_slurm/run.py +185 -0
  21. examples/wind_rose/run.py +141 -0
  22. examples/windio/run.py +29 -0
  23. examples/yawed_wake/run.py +196 -0
  24. foxes/__init__.py +4 -8
  25. foxes/algorithms/__init__.py +1 -1
  26. foxes/algorithms/downwind/downwind.py +232 -101
  27. foxes/algorithms/downwind/models/farm_wakes_calc.py +11 -6
  28. foxes/algorithms/downwind/models/init_farm_data.py +1 -1
  29. foxes/algorithms/downwind/models/point_wakes_calc.py +5 -6
  30. foxes/algorithms/downwind/models/reorder_farm_output.py +0 -1
  31. foxes/algorithms/downwind/models/set_amb_point_results.py +4 -2
  32. foxes/algorithms/iterative/iterative.py +73 -33
  33. foxes/algorithms/iterative/models/farm_wakes_calc.py +11 -6
  34. foxes/algorithms/sequential/models/plugin.py +1 -1
  35. foxes/algorithms/sequential/sequential.py +126 -255
  36. foxes/constants.py +17 -2
  37. foxes/core/__init__.py +1 -0
  38. foxes/core/algorithm.py +631 -146
  39. foxes/core/data.py +252 -20
  40. foxes/core/data_calc_model.py +13 -289
  41. foxes/core/engine.py +630 -0
  42. foxes/core/farm_controller.py +37 -9
  43. foxes/core/farm_data_model.py +15 -0
  44. foxes/core/model.py +133 -80
  45. foxes/core/point_data_model.py +15 -0
  46. foxes/core/rotor_model.py +27 -21
  47. foxes/core/states.py +16 -0
  48. foxes/core/turbine_type.py +28 -0
  49. foxes/core/wake_frame.py +22 -4
  50. foxes/core/wake_model.py +2 -3
  51. foxes/data/windio/windio_5turbines_timeseries.yaml +23 -1
  52. foxes/engines/__init__.py +16 -0
  53. foxes/engines/dask.py +975 -0
  54. foxes/engines/default.py +75 -0
  55. foxes/engines/futures.py +72 -0
  56. foxes/engines/mpi.py +38 -0
  57. foxes/engines/multiprocess.py +74 -0
  58. foxes/engines/numpy.py +185 -0
  59. foxes/engines/pool.py +263 -0
  60. foxes/engines/single.py +139 -0
  61. foxes/input/farm_layout/__init__.py +1 -0
  62. foxes/input/farm_layout/from_csv.py +4 -0
  63. foxes/input/farm_layout/from_json.py +1 -1
  64. foxes/input/farm_layout/grid.py +2 -2
  65. foxes/input/farm_layout/ring.py +65 -0
  66. foxes/input/farm_layout/row.py +2 -2
  67. foxes/input/states/__init__.py +6 -0
  68. foxes/input/states/create/random_abl_states.py +1 -1
  69. foxes/input/states/field_data_nc.py +157 -32
  70. foxes/input/states/multi_height.py +127 -13
  71. foxes/input/states/one_point_flow.py +577 -0
  72. foxes/input/states/scan_ws.py +73 -2
  73. foxes/input/states/states_table.py +204 -35
  74. foxes/input/windio/__init__.py +1 -1
  75. foxes/input/windio/get_states.py +44 -23
  76. foxes/input/windio/read_attributes.py +41 -16
  77. foxes/input/windio/read_farm.py +116 -102
  78. foxes/input/windio/read_fields.py +13 -6
  79. foxes/input/windio/read_outputs.py +63 -22
  80. foxes/input/windio/runner.py +31 -17
  81. foxes/input/windio/windio.py +36 -22
  82. foxes/models/ground_models/wake_mirror.py +8 -4
  83. foxes/models/model_book.py +29 -18
  84. foxes/models/partial_wakes/rotor_points.py +3 -3
  85. foxes/models/rotor_models/centre.py +4 -0
  86. foxes/models/rotor_models/grid.py +22 -23
  87. foxes/models/rotor_models/levels.py +4 -5
  88. foxes/models/turbine_models/calculator.py +0 -2
  89. foxes/models/turbine_models/lookup_table.py +27 -2
  90. foxes/models/turbine_models/rotor_centre_calc.py +4 -3
  91. foxes/models/turbine_models/set_farm_vars.py +103 -34
  92. foxes/models/turbine_types/PCt_file.py +24 -0
  93. foxes/models/turbine_types/PCt_from_two.py +24 -0
  94. foxes/models/turbine_types/__init__.py +1 -0
  95. foxes/models/turbine_types/lookup.py +316 -0
  96. foxes/models/turbine_types/null_type.py +50 -0
  97. foxes/models/turbine_types/wsrho2PCt_from_two.py +24 -0
  98. foxes/models/turbine_types/wsti2PCt_from_two.py +24 -0
  99. foxes/models/vertical_profiles/data_profile.py +1 -1
  100. foxes/models/wake_frames/__init__.py +1 -0
  101. foxes/models/wake_frames/dynamic_wakes.py +424 -0
  102. foxes/models/wake_frames/farm_order.py +23 -3
  103. foxes/models/wake_frames/rotor_wd.py +4 -2
  104. foxes/models/wake_frames/seq_dynamic_wakes.py +56 -63
  105. foxes/models/wake_frames/streamlines.py +19 -20
  106. foxes/models/wake_frames/timelines.py +328 -127
  107. foxes/models/wake_frames/yawed_wakes.py +4 -1
  108. foxes/models/wake_models/dist_sliced.py +1 -3
  109. foxes/models/wake_models/induction/rankine_half_body.py +4 -4
  110. foxes/models/wake_models/induction/rathmann.py +2 -2
  111. foxes/models/wake_models/induction/self_similar.py +2 -2
  112. foxes/models/wake_models/induction/vortex_sheet.py +2 -2
  113. foxes/models/wake_models/ti/iec_ti.py +34 -17
  114. foxes/models/wake_models/top_hat.py +1 -1
  115. foxes/models/wake_models/wind/bastankhah14.py +2 -2
  116. foxes/models/wake_models/wind/bastankhah16.py +8 -7
  117. foxes/models/wake_models/wind/jensen.py +1 -1
  118. foxes/models/wake_models/wind/turbopark.py +2 -2
  119. foxes/output/__init__.py +4 -1
  120. foxes/output/farm_layout.py +2 -2
  121. foxes/output/flow_plots_2d/__init__.py +0 -1
  122. foxes/output/flow_plots_2d/flow_plots.py +70 -30
  123. foxes/output/grids.py +91 -21
  124. foxes/output/seq_plugins/__init__.py +2 -0
  125. foxes/output/{flow_plots_2d → seq_plugins}/seq_flow_ani_plugin.py +62 -20
  126. foxes/output/seq_plugins/seq_wake_debug_plugin.py +145 -0
  127. foxes/output/slice_data.py +131 -111
  128. foxes/output/state_turbine_map.py +18 -13
  129. foxes/output/state_turbine_table.py +19 -19
  130. foxes/utils/__init__.py +1 -1
  131. foxes/utils/dev_utils.py +42 -0
  132. foxes/utils/dict.py +1 -1
  133. foxes/utils/factory.py +147 -52
  134. foxes/utils/pandas_helpers.py +4 -3
  135. foxes/utils/wind_dir.py +0 -2
  136. foxes/utils/xarray_utils.py +25 -13
  137. foxes/variables.py +37 -0
  138. {foxes-0.8.1.dist-info → foxes-1.0.dist-info}/METADATA +72 -34
  139. foxes-1.0.dist-info/RECORD +307 -0
  140. {foxes-0.8.1.dist-info → foxes-1.0.dist-info}/WHEEL +1 -1
  141. foxes-1.0.dist-info/top_level.txt +4 -0
  142. tests/0_consistency/iterative/test_iterative.py +92 -0
  143. tests/0_consistency/partial_wakes/test_partial_wakes.py +90 -0
  144. tests/1_verification/flappy_0_6/PCt_files/flappy/run.py +85 -0
  145. tests/1_verification/flappy_0_6/PCt_files/test_PCt_files.py +103 -0
  146. tests/1_verification/flappy_0_6/abl_states/flappy/run.py +85 -0
  147. tests/1_verification/flappy_0_6/abl_states/test_abl_states.py +87 -0
  148. tests/1_verification/flappy_0_6/partial_top_hat/flappy/run.py +82 -0
  149. tests/1_verification/flappy_0_6/partial_top_hat/test_partial_top_hat.py +82 -0
  150. tests/1_verification/flappy_0_6/row_Jensen_linear_centre/flappy/run.py +92 -0
  151. tests/1_verification/flappy_0_6/row_Jensen_linear_centre/test_row_Jensen_linear_centre.py +93 -0
  152. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat/flappy/run.py +92 -0
  153. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat/test_row_Jensen_linear_tophat.py +96 -0
  154. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat_IECTI2005/flappy/run.py +94 -0
  155. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat_IECTI2005/test_row_Jensen_linear_tophat_IECTI_2005.py +122 -0
  156. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat_IECTI2019/flappy/run.py +94 -0
  157. tests/1_verification/flappy_0_6/row_Jensen_linear_tophat_IECTI2019/test_row_Jensen_linear_tophat_IECTI_2019.py +122 -0
  158. tests/1_verification/flappy_0_6/row_Jensen_quadratic_centre/flappy/run.py +92 -0
  159. tests/1_verification/flappy_0_6/row_Jensen_quadratic_centre/test_row_Jensen_quadratic_centre.py +93 -0
  160. tests/1_verification/flappy_0_6_2/grid_rotors/flappy/run.py +85 -0
  161. tests/1_verification/flappy_0_6_2/grid_rotors/test_grid_rotors.py +130 -0
  162. tests/1_verification/flappy_0_6_2/row_Bastankhah_Crespo/flappy/run.py +96 -0
  163. tests/1_verification/flappy_0_6_2/row_Bastankhah_Crespo/test_row_Bastankhah_Crespo.py +116 -0
  164. tests/1_verification/flappy_0_6_2/row_Bastankhah_linear_centre/flappy/run.py +93 -0
  165. tests/1_verification/flappy_0_6_2/row_Bastankhah_linear_centre/test_row_Bastankhah_linear_centre.py +99 -0
  166. tests/3_examples/test_examples.py +34 -0
  167. foxes/VERSION +0 -1
  168. foxes/output/flow_plots_2d.py +0 -0
  169. foxes/utils/plotly_helpers.py +0 -19
  170. foxes/utils/runners/__init__.py +0 -1
  171. foxes/utils/runners/runners.py +0 -280
  172. foxes-0.8.1.dist-info/RECORD +0 -248
  173. foxes-0.8.1.dist-info/top_level.txt +0 -1
  174. foxes-0.8.1.dist-info/zip-safe +0 -1
  175. {foxes-0.8.1.dist-info → foxes-1.0.dist-info}/LICENSE +0 -0
@@ -0,0 +1,103 @@
1
+ import pandas as pd
2
+ from pathlib import Path
3
+ import inspect
4
+
5
+ import foxes
6
+ import foxes.variables as FV
7
+ import foxes.constants as FC
8
+
9
+ thisdir = Path(inspect.getfile(inspect.currentframe())).parent
10
+
11
+
12
+ def test():
13
+ print(thisdir)
14
+
15
+ c = 2000
16
+ cfile = thisdir / "flappy" / "results.csv.gz"
17
+ tPfile = thisdir / "NREL-5MW-D126-H90-P.csv"
18
+ tCtfile = thisdir / "NREL-5MW-D126-H90-Ct.csv"
19
+ sfile = thisdir / "states.csv.gz"
20
+ lfile = thisdir / "test_farm.csv"
21
+
22
+ ck = {FC.STATE: c}
23
+
24
+ mbook = foxes.models.ModelBook()
25
+ ttype = foxes.models.turbine_types.PCtFromTwo(
26
+ data_source_P=tPfile,
27
+ data_source_ct=tCtfile,
28
+ col_ws_P_file="ws",
29
+ col_ws_ct_file="ws",
30
+ col_P="P",
31
+ col_ct="ct",
32
+ P_nominal=5000,
33
+ H=90.0,
34
+ D=126,
35
+ name="power_and_ct_curve",
36
+ )
37
+ mbook.turbine_types[ttype.name] = ttype
38
+
39
+ states = foxes.input.states.StatesTable(
40
+ data_source=sfile,
41
+ output_vars=[FV.WS, FV.WD, FV.TI, FV.RHO],
42
+ var2col={FV.WS: "ws", FV.WD: "wd", FV.TI: "ti"},
43
+ fixed_vars={FV.RHO: 1.225},
44
+ )
45
+
46
+ farm = foxes.WindFarm()
47
+ foxes.input.farm_layout.add_from_file(
48
+ farm, lfile, turbine_models=[ttype.name], verbosity=0
49
+ )
50
+
51
+ algo = foxes.algorithms.Downwind(
52
+ farm,
53
+ states,
54
+ mbook=mbook,
55
+ rotor_model="centre",
56
+ wake_models=["Jensen_linear_k007"],
57
+ wake_frame="rotor_wd",
58
+ partial_wakes={"Jensen_linear_k007": "top_hat"},
59
+ chunks=ck,
60
+ verbosity=0,
61
+ )
62
+
63
+ data = algo.calc_farm()
64
+
65
+ df = data.to_dataframe()[[FV.AMB_WD, FV.WD, FV.AMB_REWS, FV.REWS, FV.AMB_P, FV.P]]
66
+ df = df.reset_index()
67
+
68
+ print()
69
+ print("TRESULTS\n")
70
+ print(df)
71
+
72
+ # print("\Reading file", cfile)
73
+ fdata = pd.read_csv(cfile)
74
+ print(fdata)
75
+
76
+ print("\nVERIFYING\n")
77
+ df[FV.WS] = df["REWS"]
78
+ df[FV.AMB_WS] = df["AMB_REWS"]
79
+
80
+ # neglecting ws < 5 and ws > 20
81
+ sel_ws = (
82
+ (fdata[FV.WS] > 5) & (fdata[FV.WS] < 20) & (df["REWS"] > 5) & (df["REWS"] < 20)
83
+ )
84
+
85
+ # calculating difference
86
+ delta = df.reset_index() - fdata
87
+ delta = delta[sel_ws]
88
+ print(delta)
89
+ print(delta.max())
90
+ chk = delta[[FV.AMB_WS, FV.AMB_P, FV.WS, FV.P]].abs()
91
+ sel = chk[FV.WS] >= 1e-5
92
+ print(sel)
93
+ print(df[sel & sel_ws])
94
+ print(fdata[sel & sel_ws])
95
+ print(chk.loc[sel & sel_ws])
96
+ print(chk.max())
97
+
98
+ assert ((chk[FV.WS] < 1e-5)).all()
99
+ assert (chk[FV.P] < 1e-3).all()
100
+
101
+
102
+ if __name__ == "__main__":
103
+ test()
@@ -0,0 +1,85 @@
1
+ import numpy as np
2
+ import pandas as pd
3
+ import time
4
+ import argparse
5
+ from pathlib import Path
6
+
7
+ import flappy as fl
8
+ from flappy.config.variables import variables as FV
9
+
10
+ if __name__ == "__main__":
11
+ parser = argparse.ArgumentParser()
12
+ parser.add_argument(
13
+ "-c", "--chunksize", help="The maximal chunk size", type=int, default=500
14
+ )
15
+ parser.add_argument(
16
+ "-o", "--ofile", help="The output file name", default="results.csv.gz"
17
+ )
18
+ parser.add_argument(
19
+ "--n_cpus", help="The number of processors", type=int, default=4
20
+ )
21
+ args = parser.parse_args()
22
+
23
+ c = args.chunksize
24
+ p0 = np.array([0.0, 0.0])
25
+ stp = np.array([500.0, 0.0])
26
+ ofile = Path(args.ofile)
27
+ tfile = "../NREL-5MW-D126-H90.csv"
28
+ sfile = "../states.csv.gz"
29
+ lfile = "../test_farm.csv"
30
+
31
+ # init flappy:
32
+ fl.init_flappy(n_cpus=args.n_cpus)
33
+
34
+ # load model book:
35
+ mbook = fl.ModelBook(ct_power_curve_file=tfile)
36
+
37
+ # create wind farm:
38
+ farm = fl.WindFarm()
39
+ fl.input.add_turbines_from_csv(
40
+ farm,
41
+ lfile,
42
+ col_index="index",
43
+ col_x="x",
44
+ col_y="y",
45
+ col_h="H",
46
+ rotor_diameter=126.0,
47
+ rotor_model="centre",
48
+ wake_models=["Jensen007_rotor"],
49
+ turbine_models=["ct_P_curves"],
50
+ )
51
+
52
+ # create states:
53
+ states = fl.input.AFSStatesTable(
54
+ data_file=sfile,
55
+ col_wd="wd",
56
+ col_ws_ref="ws",
57
+ col_ti="ti",
58
+ col_mol="mol",
59
+ z0=0.05,
60
+ h_ref=100.0,
61
+ col_weight="weight",
62
+ air_density=1.225,
63
+ max_chunk_size=args.chunksize,
64
+ )
65
+ states.initialize()
66
+
67
+ time0 = time.time()
68
+
69
+ # run calculation:
70
+ results = farm.calculate(mbook, states, wake_superp=["wind_linear"])
71
+
72
+ time1 = time.time()
73
+ print("\nCalc time =", time1 - time0, "\n")
74
+
75
+ df = results.state_turbine_results[[FV.WD, FV.AMB_WS, FV.WS, FV.AMB_P, FV.P]]
76
+
77
+ print()
78
+ print("TRESULTS\n")
79
+ print(df)
80
+
81
+ print("\nWriting file", ofile)
82
+ df.to_csv(ofile)
83
+
84
+ # close flappy:
85
+ fl.shutdown_flappy()
@@ -0,0 +1,87 @@
1
+ import pandas as pd
2
+ from pathlib import Path
3
+ import inspect
4
+
5
+ import foxes
6
+ import foxes.variables as FV
7
+ import foxes.constants as FC
8
+
9
+ thisdir = Path(inspect.getfile(inspect.currentframe())).parent
10
+
11
+
12
+ def test():
13
+ c = 2000
14
+ cfile = thisdir / "flappy" / "results.csv.gz"
15
+ tfile = thisdir / "NREL-5MW-D126-H90.csv"
16
+ sfile = thisdir / "states.csv.gz"
17
+ lfile = thisdir / "test_farm.csv"
18
+
19
+ ck = {FC.STATE: c}
20
+
21
+ mbook = foxes.models.ModelBook()
22
+ ttype = foxes.models.turbine_types.PCtFile(
23
+ data_source=tfile, var_ws_ct=FV.REWS, var_ws_P=FV.REWS
24
+ )
25
+ mbook.turbine_types[ttype.name] = ttype
26
+
27
+ states = foxes.input.states.StatesTable(
28
+ data_source=sfile,
29
+ output_vars=[FV.WS, FV.WD, FV.TI, FV.RHO, FV.MOL],
30
+ var2col={FV.WS: "ws", FV.WD: "wd", FV.TI: "ti", FV.MOL: "mol"},
31
+ fixed_vars={FV.RHO: 1.225, FV.Z0: 0.05, FV.H: 100.0},
32
+ profiles={FV.WS: "ABLLogWsProfile"},
33
+ )
34
+
35
+ farm = foxes.WindFarm()
36
+ foxes.input.farm_layout.add_from_file(
37
+ farm,
38
+ lfile,
39
+ col_x="x",
40
+ col_y="y",
41
+ col_H="H",
42
+ turbine_models=[ttype.name],
43
+ verbosity=0,
44
+ )
45
+
46
+ algo = foxes.algorithms.Downwind(
47
+ farm,
48
+ states,
49
+ mbook=mbook,
50
+ rotor_model="centre",
51
+ wake_models=["Jensen_linear_k007"],
52
+ wake_frame="rotor_wd",
53
+ partial_wakes={"Jensen_linear_k007": "centre"},
54
+ chunks=ck,
55
+ verbosity=0,
56
+ )
57
+
58
+ data = algo.calc_farm()
59
+
60
+ df = data.to_dataframe()[[FV.AMB_WD, FV.WD, FV.AMB_REWS, FV.REWS, FV.AMB_P, FV.P]]
61
+
62
+ print()
63
+ print("TRESULTS\n")
64
+ print(df)
65
+
66
+ print("\nReading file", cfile)
67
+ fdata = pd.read_csv(cfile)
68
+ print(fdata)
69
+
70
+ print("\nVERIFYING\n")
71
+ df[FV.WS] = df["REWS"]
72
+ df[FV.AMB_WS] = df["AMB_REWS"]
73
+
74
+ delta = df.reset_index() - fdata
75
+ print(delta)
76
+ print(delta.max())
77
+ chk = delta[[FV.AMB_WS, FV.AMB_P, FV.WS, FV.P]].abs()
78
+ print(chk.max())
79
+
80
+ assert (chk[FV.AMB_WS] < 1e-5).all()
81
+ assert (chk[FV.AMB_P] < 1e-3).all()
82
+ assert (chk[FV.WS] < 1e-5).all()
83
+ assert (chk[FV.P] < 1e-3).all()
84
+
85
+
86
+ if __name__ == "__main__":
87
+ test()
@@ -0,0 +1,82 @@
1
+ import numpy as np
2
+ import pandas as pd
3
+ import time
4
+ import argparse
5
+ from pathlib import Path
6
+
7
+ import flappy as fl
8
+ from flappy.config.variables import variables as FV
9
+
10
+ if __name__ == "__main__":
11
+ parser = argparse.ArgumentParser()
12
+ parser.add_argument(
13
+ "-c", "--chunksize", help="The maximal chunk size", type=int, default=500
14
+ )
15
+ parser.add_argument(
16
+ "-o", "--ofile", help="The output file name", default="results.csv.gz"
17
+ )
18
+ parser.add_argument(
19
+ "--n_cpus", help="The number of processors", type=int, default=4
20
+ )
21
+ args = parser.parse_args()
22
+
23
+ c = args.chunksize
24
+ p0 = np.array([0.0, 0.0])
25
+ stp = np.array([500.0, 0.0])
26
+ ofile = Path(args.ofile)
27
+ tfile = "../NREL-5MW-D126-H90.csv"
28
+ sfile = "../states.csv.gz"
29
+ lfile = "../test_farm.csv"
30
+
31
+ # init flappy:
32
+ fl.init_flappy(n_cpus=args.n_cpus)
33
+
34
+ # load model book:
35
+ mbook = fl.ModelBook(ct_power_curve_file=tfile)
36
+
37
+ # create wind farm:
38
+ farm = fl.WindFarm()
39
+ fl.input.add_turbines_from_csv(
40
+ farm,
41
+ lfile,
42
+ col_index="index",
43
+ col_x="x",
44
+ col_y="y",
45
+ rotor_diameter=126.0,
46
+ hub_height=90.0,
47
+ rotor_model="centre",
48
+ wake_models=["Jensen007"],
49
+ turbine_models=["ct_P_curves"],
50
+ )
51
+
52
+ # create states:
53
+ states = fl.input.AFSStatesTable(
54
+ data_file=sfile,
55
+ col_wd="wd",
56
+ col_ws="ws",
57
+ col_ti="ti",
58
+ col_weight="weight",
59
+ air_density=1.225,
60
+ max_chunk_size=args.chunksize,
61
+ )
62
+ states.initialize()
63
+
64
+ time0 = time.time()
65
+
66
+ # run calculation:
67
+ results = farm.calculate(mbook, states, wake_superp=["wind_linear"])
68
+
69
+ time1 = time.time()
70
+ print("\nCalc time =", time1 - time0, "\n")
71
+
72
+ df = results.state_turbine_results[[FV.WD, FV.AMB_WS, FV.WS, FV.AMB_P, FV.P]]
73
+
74
+ print()
75
+ print("TRESULTS\n")
76
+ print(df)
77
+
78
+ print("\nWriting file", ofile)
79
+ df.to_csv(ofile)
80
+
81
+ # close flappy:
82
+ fl.shutdown_flappy()
@@ -0,0 +1,82 @@
1
+ import pandas as pd
2
+ from pathlib import Path
3
+ import inspect
4
+
5
+ import foxes
6
+ import foxes.variables as FV
7
+ import foxes.constants as FC
8
+
9
+ thisdir = Path(inspect.getfile(inspect.currentframe())).parent
10
+
11
+
12
+ def test():
13
+ print(thisdir)
14
+
15
+ c = 2000
16
+ cfile = thisdir / "flappy" / "results.csv.gz"
17
+ tfile = thisdir / "NREL-5MW-D126-H90.csv"
18
+ sfile = thisdir / "states.csv.gz"
19
+ lfile = thisdir / "test_farm.csv"
20
+
21
+ ck = {FC.STATE: c}
22
+
23
+ mbook = foxes.models.ModelBook()
24
+ ttype = foxes.models.turbine_types.PCtFile(
25
+ data_source=tfile, var_ws_ct=FV.REWS, var_ws_P=FV.REWS
26
+ )
27
+ mbook.turbine_types[ttype.name] = ttype
28
+
29
+ states = foxes.input.states.StatesTable(
30
+ data_source=sfile,
31
+ output_vars=[FV.WS, FV.WD, FV.TI, FV.RHO],
32
+ var2col={FV.WS: "ws", FV.WD: "wd", FV.TI: "ti"},
33
+ fixed_vars={FV.RHO: 1.225},
34
+ )
35
+
36
+ farm = foxes.WindFarm()
37
+ foxes.input.farm_layout.add_from_file(
38
+ farm, lfile, turbine_models=[ttype.name], verbosity=0
39
+ )
40
+
41
+ algo = foxes.algorithms.Downwind(
42
+ farm,
43
+ states,
44
+ mbook=mbook,
45
+ rotor_model="centre",
46
+ wake_models=["Jensen_linear_k007"],
47
+ wake_frame="rotor_wd",
48
+ partial_wakes={"Jensen_linear_k007": "top_hat"},
49
+ chunks=ck,
50
+ verbosity=0,
51
+ )
52
+
53
+ data = algo.calc_farm()
54
+
55
+ df = data.to_dataframe()[[FV.AMB_WD, FV.WD, FV.AMB_REWS, FV.REWS, FV.AMB_P, FV.P]]
56
+
57
+ print()
58
+ print("TRESULTS\n")
59
+ print(df)
60
+
61
+ print("\nReading file", cfile)
62
+ fdata = pd.read_csv(cfile)
63
+ print(fdata)
64
+
65
+ print("\nVERIFYING\n")
66
+ df[FV.WS] = df["REWS"]
67
+ df[FV.AMB_WS] = df["AMB_REWS"]
68
+
69
+ delta = (df.reset_index() - fdata)[[FV.AMB_WS, FV.AMB_P, FV.WS, FV.P]]
70
+ print("\nDELTA\n", delta.describe())
71
+
72
+ chk = delta.abs().max()
73
+ print("\nCHK\n", chk)
74
+ print("CHK WS =", chk[FV.WS])
75
+ print("CHK P =", chk[FV.P])
76
+
77
+ assert chk[FV.WS] < 1e-5
78
+ assert chk[FV.P] < 1e-3
79
+
80
+
81
+ if __name__ == "__main__":
82
+ test()
@@ -0,0 +1,92 @@
1
+ import numpy as np
2
+ import time
3
+ import argparse
4
+ from pathlib import Path
5
+
6
+ import flappy as fl
7
+ from flappy.config.variables import variables as FV
8
+
9
+ if __name__ == "__main__":
10
+ parser = argparse.ArgumentParser()
11
+ parser.add_argument(
12
+ "-c", "--chunksize", help="The maximal chunk size", type=int, default=500
13
+ )
14
+ parser.add_argument(
15
+ "-o", "--ofile", help="The output file name", default="results.csv.gz"
16
+ )
17
+ parser.add_argument(
18
+ "--n_cpus", help="The number of processors", type=int, default=1
19
+ )
20
+ args = parser.parse_args()
21
+
22
+ n_s = 800
23
+ n_t = 76
24
+ c = args.chunksize
25
+ p0 = np.array([0.0, 0.0])
26
+ stp = np.array([497.0, 0.0])
27
+ tfile = "../NREL-5MW-D126-H90.csv"
28
+ ofile = Path(args.ofile)
29
+
30
+ # init flappy:
31
+ fl.init_flappy(n_cpus=args.n_cpus)
32
+
33
+ # load model book:
34
+ mbook = fl.ModelBook(ct_power_curve_file=tfile)
35
+
36
+ # create wind farm:
37
+ farm = fl.WindFarm()
38
+ fl.input.add_turbine_row(
39
+ farm,
40
+ rotor_diameter=126.0,
41
+ hub_height=90.0,
42
+ rotor_model="centre",
43
+ wake_models=["Jensen007_rotor"],
44
+ turbine_models=["ct_P_curves"],
45
+ base_point=p0,
46
+ step_vector=stp,
47
+ steps=n_t - 1,
48
+ )
49
+
50
+ # create states:
51
+ ws0 = 3.0
52
+ ws1 = 30.0
53
+ states = fl.input.AFSScan(
54
+ ws_min=ws0,
55
+ ws_delta=(ws1 - ws0) / (n_s - 1),
56
+ ws_n_bins=n_s,
57
+ func_pdf_ws=None,
58
+ wd_min=270.0,
59
+ wd_delta=1.0,
60
+ wd_n_bins=1,
61
+ func_pdf_wd=None,
62
+ ti_min=0.08,
63
+ ti_delta=0.01,
64
+ ti_n_bins=1,
65
+ func_pdf_ti=None,
66
+ rho_min=1.225,
67
+ rho_delta=0.001,
68
+ rho_n_bins=1,
69
+ func_pdf_rho=None,
70
+ max_chunk_size=c,
71
+ )
72
+ states.initialize()
73
+
74
+ time0 = time.time()
75
+
76
+ # run calculation:
77
+ results = farm.calculate(mbook, states, wake_superp=["wind_linear"])
78
+
79
+ time1 = time.time()
80
+ print("\nCalc time =", time1 - time0, "\n")
81
+
82
+ df = results.state_turbine_results[[FV.WD, FV.AMB_WS, FV.WS, FV.AMB_P, FV.P]]
83
+
84
+ print()
85
+ print("TRESULTS\n")
86
+ print(df)
87
+
88
+ print("\nWriting file", ofile)
89
+ df.to_csv(ofile)
90
+
91
+ # close flappy:
92
+ fl.shutdown_flappy()
@@ -0,0 +1,93 @@
1
+ import numpy as np
2
+ import pandas as pd
3
+ from pathlib import Path
4
+ import inspect
5
+
6
+ import foxes
7
+ import foxes.variables as FV
8
+ import foxes.constants as FC
9
+
10
+ thisdir = Path(inspect.getfile(inspect.currentframe())).parent
11
+
12
+
13
+ def test():
14
+ n_s = 800
15
+ n_t = 76
16
+ c = 1000
17
+ p0 = np.array([0.0, 0.0])
18
+ stp = np.array([497.0, 0.0])
19
+ cfile = thisdir / "flappy" / "results.csv.gz"
20
+ tfile = thisdir / "NREL-5MW-D126-H90.csv"
21
+
22
+ mbook = foxes.models.ModelBook()
23
+ ttype = foxes.models.turbine_types.PCtFile(
24
+ data_source=tfile, var_ws_ct=FV.REWS, var_ws_P=FV.REWS
25
+ )
26
+ mbook.turbine_types[ttype.name] = ttype
27
+
28
+ states = foxes.input.states.ScanWS(
29
+ ws_list=np.linspace(3.0, 30.0, n_s), wd=270.0, ti=0.08, rho=1.225
30
+ )
31
+
32
+ farm = foxes.WindFarm()
33
+ foxes.input.farm_layout.add_row(
34
+ farm=farm,
35
+ xy_base=p0,
36
+ xy_step=stp,
37
+ n_turbines=n_t,
38
+ turbine_models=[ttype.name],
39
+ verbosity=0,
40
+ )
41
+
42
+ algo = foxes.algorithms.Downwind(
43
+ farm,
44
+ states,
45
+ mbook=mbook,
46
+ rotor_model="centre",
47
+ wake_models=["Jensen_linear_k007"],
48
+ wake_frame="rotor_wd",
49
+ partial_wakes={"Jensen_linear_k007": "rotor_points"},
50
+ verbosity=0,
51
+ )
52
+
53
+ data = algo.calc_farm()
54
+
55
+ df = data.to_dataframe()[[FV.WD, FV.AMB_REWS, FV.REWS, FV.AMB_P, FV.P]]
56
+
57
+ print("\nReading file", cfile)
58
+ fdata = pd.read_csv(cfile).set_index(["state", "turbine"])
59
+
60
+ print()
61
+ print("TRESULTS\n")
62
+ sel = (df[FV.P] > 0) & (fdata[FV.P] > 0)
63
+ df = df.loc[sel]
64
+ fdata = fdata.loc[sel]
65
+ print(df.loc[sel])
66
+ print(fdata.loc[sel])
67
+
68
+ print("\nVERIFYING\n")
69
+ df[FV.WS] = df["REWS"]
70
+ df[FV.AMB_WS] = df["AMB_REWS"]
71
+
72
+ delta = df - fdata
73
+ print(delta)
74
+
75
+ chk = delta.abs()
76
+ print(chk.max())
77
+
78
+ var = FV.WS
79
+ print(f"\nCHECKING {var}")
80
+ sel = chk[var] >= 1e-7
81
+ print(df.loc[sel])
82
+ print(fdata.loc[sel])
83
+ print(chk.loc[sel])
84
+ assert (chk[var] < 1e-7).all()
85
+
86
+ var = FV.P
87
+ sel = chk[var] >= 1e-5
88
+ print(f"\nCHECKING {var}\n", delta.loc[sel])
89
+ assert (chk[var] < 1e-5).all()
90
+
91
+
92
+ if __name__ == "__main__":
93
+ test()