pybmodes 1.8.0__tar.gz

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.
Files changed (266) hide show
  1. pybmodes-1.8.0/.readthedocs.yaml +27 -0
  2. pybmodes-1.8.0/CHANGELOG.md +1709 -0
  3. pybmodes-1.8.0/CITATION.cff +38 -0
  4. pybmodes-1.8.0/CODE_OF_CONDUCT.md +47 -0
  5. pybmodes-1.8.0/CONTRIBUTING.md +121 -0
  6. pybmodes-1.8.0/LICENSE +202 -0
  7. pybmodes-1.8.0/MANIFEST.in +39 -0
  8. pybmodes-1.8.0/PKG-INFO +369 -0
  9. pybmodes-1.8.0/README.md +117 -0
  10. pybmodes-1.8.0/SECURITY.md +38 -0
  11. pybmodes-1.8.0/VALIDATION.md +331 -0
  12. pybmodes-1.8.0/docs/_static/.gitkeep +0 -0
  13. pybmodes-1.8.0/docs/api.rst +223 -0
  14. pybmodes-1.8.0/docs/api_contract.rst +418 -0
  15. pybmodes-1.8.0/docs/changelog.rst +46 -0
  16. pybmodes-1.8.0/docs/conf.py +104 -0
  17. pybmodes-1.8.0/docs/contributing.rst +61 -0
  18. pybmodes-1.8.0/docs/data_sources.rst +361 -0
  19. pybmodes-1.8.0/docs/deployment.rst +143 -0
  20. pybmodes-1.8.0/docs/index.rst +143 -0
  21. pybmodes-1.8.0/docs/installation.rst +246 -0
  22. pybmodes-1.8.0/docs/limitations.rst +275 -0
  23. pybmodes-1.8.0/docs/quickstart.rst +316 -0
  24. pybmodes-1.8.0/docs/release_checklist.rst +287 -0
  25. pybmodes-1.8.0/docs/theory.rst +336 -0
  26. pybmodes-1.8.0/docs/units.rst +321 -0
  27. pybmodes-1.8.0/docs/validation.rst +113 -0
  28. pybmodes-1.8.0/pyproject.toml +200 -0
  29. pybmodes-1.8.0/setup.cfg +4 -0
  30. pybmodes-1.8.0/src/pybmodes/__init__.py +188 -0
  31. pybmodes-1.8.0/src/pybmodes/_examples/__init__.py +45 -0
  32. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/FLOATING_CASES.md +144 -0
  33. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/README.md +150 -0
  34. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/VALIDATION_SUMMARY.md +63 -0
  35. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT-UMaineSemi_ElastoDyn.dat +261 -0
  36. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT-UMaineSemi_Tower.dat +51 -0
  37. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT_Blade.dat +82 -0
  38. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/before_patch.txt +17 -0
  39. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/validation_report.txt +42 -0
  40. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_Blade.dat +62 -0
  41. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_ElastoDyn.dat +162 -0
  42. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_Tower.dat +51 -0
  43. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/before_patch.txt +17 -0
  44. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/validation_report.txt +16 -0
  45. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Blade.dat +83 -0
  46. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Onshore_ElastoDyn.dat +185 -0
  47. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Tower.dat +54 -0
  48. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/before_patch.txt +17 -0
  49. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/validation_report.txt +16 -0
  50. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_Blade.dat +83 -0
  51. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_ElastoDyn.dat +165 -0
  52. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_SubDyn.dat +109 -0
  53. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_Tower.dat +54 -0
  54. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/before_patch.txt +17 -0
  55. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/validation_report.txt +16 -0
  56. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_Blade.dat +83 -0
  57. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_OC3Hywind_ElastoDyn.dat +234 -0
  58. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_OC3Hywind_Tower.dat +54 -0
  59. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/before_patch.txt +17 -0
  60. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/validation_report.txt +16 -0
  61. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_Blade.dat +83 -0
  62. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_OC4DeepCwindSemi_ElastoDyn.dat +189 -0
  63. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_OC4DeepCwindSemi_Tower.dat +54 -0
  64. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/before_patch.txt +17 -0
  65. pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/validation_report.txt +16 -0
  66. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/README.md +75 -0
  67. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/uniform_blade.bmi +51 -0
  68. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/uniform_blade_sec_props.dat +7 -0
  69. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/README.md +82 -0
  70. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/tower_topmass.bmi +54 -0
  71. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/tower_topmass_sec_props.dat +7 -0
  72. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/README.md +103 -0
  73. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/rotating_blade.bmi +51 -0
  74. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/rotating_blade_sec_props.dat +7 -0
  75. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/README.md +94 -0
  76. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/cable.bmi +51 -0
  77. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/cable_sec_props.dat +7 -0
  78. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/README.md +115 -0
  79. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_blade.bmi +51 -0
  80. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_blade_sec_props.dat +54 -0
  81. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_tower.bmi +60 -0
  82. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_tower_sec_props.dat +16 -0
  83. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/README.md +54 -0
  84. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_blade.bmi +51 -0
  85. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_blade_sec_props.dat +54 -0
  86. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_tower.bmi +100 -0
  87. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_tower_sec_props.dat +20 -0
  88. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/README.md +54 -0
  89. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_blade.bmi +51 -0
  90. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_blade_sec_props.dat +35 -0
  91. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_tower.bmi +60 -0
  92. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_tower_sec_props.dat +15 -0
  93. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/README.md +54 -0
  94. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_blade.bmi +51 -0
  95. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_blade_sec_props.dat +35 -0
  96. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_tower.bmi +100 -0
  97. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_tower_sec_props.dat +35 -0
  98. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/README.md +54 -0
  99. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_blade.bmi +51 -0
  100. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_blade_sec_props.dat +55 -0
  101. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_tower.bmi +100 -0
  102. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_tower_sec_props.dat +44 -0
  103. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/README.md +54 -0
  104. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_blade.bmi +51 -0
  105. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_blade_sec_props.dat +64 -0
  106. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_tower.bmi +100 -0
  107. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_tower_sec_props.dat +45 -0
  108. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/README.md +54 -0
  109. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_blade.bmi +51 -0
  110. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_blade_sec_props.dat +54 -0
  111. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_tower.bmi +100 -0
  112. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_tower_sec_props.dat +16 -0
  113. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/README.md +54 -0
  114. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_blade.bmi +51 -0
  115. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_blade_sec_props.dat +54 -0
  116. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_tower.bmi +100 -0
  117. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_tower_sec_props.dat +16 -0
  118. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/README.md +54 -0
  119. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_blade.bmi +51 -0
  120. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_blade_sec_props.dat +55 -0
  121. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_tower.bmi +100 -0
  122. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_tower_sec_props.dat +15 -0
  123. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/README.md +54 -0
  124. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_blade.bmi +51 -0
  125. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_blade_sec_props.dat +64 -0
  126. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_tower.bmi +100 -0
  127. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_tower_sec_props.dat +35 -0
  128. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/README.md +54 -0
  129. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_blade.bmi +51 -0
  130. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_blade_sec_props.dat +58 -0
  131. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_tower.bmi +100 -0
  132. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_tower_sec_props.dat +25 -0
  133. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/README.md +54 -0
  134. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/README.md +170 -0
  135. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/build.py +1585 -0
  136. pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/verify.py +169 -0
  137. pybmodes-1.8.0/src/pybmodes/campbell/__init__.py +112 -0
  138. pybmodes-1.8.0/src/pybmodes/campbell/_classify.py +119 -0
  139. pybmodes-1.8.0/src/pybmodes/campbell/_mac.py +90 -0
  140. pybmodes-1.8.0/src/pybmodes/campbell/_models.py +210 -0
  141. pybmodes-1.8.0/src/pybmodes/campbell/_plot.py +393 -0
  142. pybmodes-1.8.0/src/pybmodes/campbell/_sweep.py +347 -0
  143. pybmodes-1.8.0/src/pybmodes/campbell/result.py +271 -0
  144. pybmodes-1.8.0/src/pybmodes/checks.py +445 -0
  145. pybmodes-1.8.0/src/pybmodes/cli.py +780 -0
  146. pybmodes-1.8.0/src/pybmodes/coords.py +120 -0
  147. pybmodes-1.8.0/src/pybmodes/elastodyn/__init__.py +44 -0
  148. pybmodes-1.8.0/src/pybmodes/elastodyn/params.py +798 -0
  149. pybmodes-1.8.0/src/pybmodes/elastodyn/validate.py +432 -0
  150. pybmodes-1.8.0/src/pybmodes/elastodyn/writer.py +97 -0
  151. pybmodes-1.8.0/src/pybmodes/fem/__init__.py +14 -0
  152. pybmodes-1.8.0/src/pybmodes/fem/assembly.py +314 -0
  153. pybmodes-1.8.0/src/pybmodes/fem/boundary.py +165 -0
  154. pybmodes-1.8.0/src/pybmodes/fem/element.py +394 -0
  155. pybmodes-1.8.0/src/pybmodes/fem/gauss.py +40 -0
  156. pybmodes-1.8.0/src/pybmodes/fem/nondim.py +376 -0
  157. pybmodes-1.8.0/src/pybmodes/fem/normalize.py +141 -0
  158. pybmodes-1.8.0/src/pybmodes/fem/platform_modes.py +153 -0
  159. pybmodes-1.8.0/src/pybmodes/fem/solver.py +245 -0
  160. pybmodes-1.8.0/src/pybmodes/fitting/__init__.py +18 -0
  161. pybmodes-1.8.0/src/pybmodes/fitting/poly_fit.py +153 -0
  162. pybmodes-1.8.0/src/pybmodes/io/__init__.py +56 -0
  163. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/__init__.py +92 -0
  164. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/adapter.py +527 -0
  165. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/lex.py +139 -0
  166. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/parser.py +558 -0
  167. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/types.py +213 -0
  168. pybmodes-1.8.0/src/pybmodes/io/_elastodyn/writer.py +233 -0
  169. pybmodes-1.8.0/src/pybmodes/io/_precomp/__init__.py +42 -0
  170. pybmodes-1.8.0/src/pybmodes/io/_precomp/arc_resolver.py +430 -0
  171. pybmodes-1.8.0/src/pybmodes/io/_precomp/decouple.py +257 -0
  172. pybmodes-1.8.0/src/pybmodes/io/_precomp/laminate.py +214 -0
  173. pybmodes-1.8.0/src/pybmodes/io/_precomp/profile.py +201 -0
  174. pybmodes-1.8.0/src/pybmodes/io/_precomp/reduction.py +329 -0
  175. pybmodes-1.8.0/src/pybmodes/io/_serialize.py +148 -0
  176. pybmodes-1.8.0/src/pybmodes/io/bmi.py +733 -0
  177. pybmodes-1.8.0/src/pybmodes/io/elastodyn_reader.py +129 -0
  178. pybmodes-1.8.0/src/pybmodes/io/errors.py +191 -0
  179. pybmodes-1.8.0/src/pybmodes/io/geometry.py +135 -0
  180. pybmodes-1.8.0/src/pybmodes/io/out_parser.py +314 -0
  181. pybmodes-1.8.0/src/pybmodes/io/sec_props.py +187 -0
  182. pybmodes-1.8.0/src/pybmodes/io/subdyn_reader.py +612 -0
  183. pybmodes-1.8.0/src/pybmodes/io/wamit_reader.py +534 -0
  184. pybmodes-1.8.0/src/pybmodes/io/windio.py +322 -0
  185. pybmodes-1.8.0/src/pybmodes/io/windio_blade.py +588 -0
  186. pybmodes-1.8.0/src/pybmodes/io/windio_floating.py +466 -0
  187. pybmodes-1.8.0/src/pybmodes/mac.py +306 -0
  188. pybmodes-1.8.0/src/pybmodes/models/__init__.py +20 -0
  189. pybmodes-1.8.0/src/pybmodes/models/_pipeline.py +260 -0
  190. pybmodes-1.8.0/src/pybmodes/models/_platform.py +139 -0
  191. pybmodes-1.8.0/src/pybmodes/models/_shared.py +69 -0
  192. pybmodes-1.8.0/src/pybmodes/models/blade.py +271 -0
  193. pybmodes-1.8.0/src/pybmodes/models/result.py +443 -0
  194. pybmodes-1.8.0/src/pybmodes/models/tower.py +968 -0
  195. pybmodes-1.8.0/src/pybmodes/mooring/__init__.py +104 -0
  196. pybmodes-1.8.0/src/pybmodes/mooring/_catenary.py +113 -0
  197. pybmodes-1.8.0/src/pybmodes/mooring/_moordyn_parser.py +255 -0
  198. pybmodes-1.8.0/src/pybmodes/mooring/_rotation.py +41 -0
  199. pybmodes-1.8.0/src/pybmodes/mooring/system.py +608 -0
  200. pybmodes-1.8.0/src/pybmodes/mooring/types.py +248 -0
  201. pybmodes-1.8.0/src/pybmodes/options.py +173 -0
  202. pybmodes-1.8.0/src/pybmodes/plots/__init__.py +54 -0
  203. pybmodes-1.8.0/src/pybmodes/plots/environmental.py +365 -0
  204. pybmodes-1.8.0/src/pybmodes/plots/mode_shapes.py +791 -0
  205. pybmodes-1.8.0/src/pybmodes/plots/style.py +163 -0
  206. pybmodes-1.8.0/src/pybmodes/py.typed +0 -0
  207. pybmodes-1.8.0/src/pybmodes/report.py +623 -0
  208. pybmodes-1.8.0/src/pybmodes/workflows/__init__.py +118 -0
  209. pybmodes-1.8.0/src/pybmodes/workflows/_base.py +61 -0
  210. pybmodes-1.8.0/src/pybmodes/workflows/batch.py +400 -0
  211. pybmodes-1.8.0/src/pybmodes/workflows/campbell.py +195 -0
  212. pybmodes-1.8.0/src/pybmodes/workflows/examples.py +197 -0
  213. pybmodes-1.8.0/src/pybmodes/workflows/patch.py +387 -0
  214. pybmodes-1.8.0/src/pybmodes/workflows/report.py +206 -0
  215. pybmodes-1.8.0/src/pybmodes/workflows/validate.py +179 -0
  216. pybmodes-1.8.0/src/pybmodes/workflows/windio.py +552 -0
  217. pybmodes-1.8.0/src/pybmodes.egg-info/PKG-INFO +369 -0
  218. pybmodes-1.8.0/src/pybmodes.egg-info/SOURCES.txt +264 -0
  219. pybmodes-1.8.0/src/pybmodes.egg-info/dependency_links.txt +1 -0
  220. pybmodes-1.8.0/src/pybmodes.egg-info/entry_points.txt +2 -0
  221. pybmodes-1.8.0/src/pybmodes.egg-info/requires.txt +33 -0
  222. pybmodes-1.8.0/src/pybmodes.egg-info/top_level.txt +1 -0
  223. pybmodes-1.8.0/tests/test_asymmetric_platform.py +397 -0
  224. pybmodes-1.8.0/tests/test_batch.py +199 -0
  225. pybmodes-1.8.0/tests/test_campbell.py +937 -0
  226. pybmodes-1.8.0/tests/test_campbell_helpers.py +167 -0
  227. pybmodes-1.8.0/tests/test_cases_compile_clean.py +87 -0
  228. pybmodes-1.8.0/tests/test_certtest.py +260 -0
  229. pybmodes-1.8.0/tests/test_checks.py +403 -0
  230. pybmodes-1.8.0/tests/test_classifier.py +436 -0
  231. pybmodes-1.8.0/tests/test_cli_patch_args.py +46 -0
  232. pybmodes-1.8.0/tests/test_coords.py +56 -0
  233. pybmodes-1.8.0/tests/test_decouple.py +143 -0
  234. pybmodes-1.8.0/tests/test_elastodyn.py +344 -0
  235. pybmodes-1.8.0/tests/test_elastodyn_compatible.py +242 -0
  236. pybmodes-1.8.0/tests/test_elastodyn_extra.py +448 -0
  237. pybmodes-1.8.0/tests/test_elastodyn_reader.py +443 -0
  238. pybmodes-1.8.0/tests/test_elastodyn_writer.py +147 -0
  239. pybmodes-1.8.0/tests/test_environmental.py +230 -0
  240. pybmodes-1.8.0/tests/test_examples_cli.py +123 -0
  241. pybmodes-1.8.0/tests/test_fitting.py +140 -0
  242. pybmodes-1.8.0/tests/test_fitting_extra.py +137 -0
  243. pybmodes-1.8.0/tests/test_floating_samples.py +212 -0
  244. pybmodes-1.8.0/tests/test_floating_samples_spectra.py +135 -0
  245. pybmodes-1.8.0/tests/test_geometry_windio.py +706 -0
  246. pybmodes-1.8.0/tests/test_io.py +370 -0
  247. pybmodes-1.8.0/tests/test_io_errors.py +165 -0
  248. pybmodes-1.8.0/tests/test_mac.py +206 -0
  249. pybmodes-1.8.0/tests/test_models.py +158 -0
  250. pybmodes-1.8.0/tests/test_mooring.py +970 -0
  251. pybmodes-1.8.0/tests/test_notebooks.py +169 -0
  252. pybmodes-1.8.0/tests/test_out_parser.py +409 -0
  253. pybmodes-1.8.0/tests/test_parser_negative_paths.py +805 -0
  254. pybmodes-1.8.0/tests/test_platform_mode_labels.py +136 -0
  255. pybmodes-1.8.0/tests/test_plot_mode_shapes.py +184 -0
  256. pybmodes-1.8.0/tests/test_reference_decks.py +121 -0
  257. pybmodes-1.8.0/tests/test_report.py +201 -0
  258. pybmodes-1.8.0/tests/test_serialize.py +742 -0
  259. pybmodes-1.8.0/tests/test_subdyn_reader.py +342 -0
  260. pybmodes-1.8.0/tests/test_validate.py +447 -0
  261. pybmodes-1.8.0/tests/test_wamit_reader.py +179 -0
  262. pybmodes-1.8.0/tests/test_wamit_reader_synth.py +62 -0
  263. pybmodes-1.8.0/tests/test_windio_blade.py +1330 -0
  264. pybmodes-1.8.0/tests/test_windio_cli.py +129 -0
  265. pybmodes-1.8.0/tests/test_windio_floating.py +1011 -0
  266. pybmodes-1.8.0/tests/test_workflows.py +907 -0
@@ -0,0 +1,27 @@
1
+ # Read the Docs configuration — see https://docs.readthedocs.io/en/stable/config-file/v2.html
2
+ version: 2
3
+
4
+ build:
5
+ os: ubuntu-22.04
6
+ tools:
7
+ python: "3.11"
8
+
9
+ sphinx:
10
+ configuration: docs/conf.py
11
+ # Strict: any Sphinx warning fails the build. The docstring
12
+ # warning backlog was burned down in the v1.x infrastructure
13
+ # round; the build is expected to be zero-warning from here on.
14
+ fail_on_warning: true
15
+
16
+ formats:
17
+ - pdf
18
+ - htmlzip
19
+
20
+ python:
21
+ install:
22
+ - method: pip
23
+ path: .
24
+ extra_requirements:
25
+ - docs
26
+ - plots
27
+ - windio