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.
- pybmodes-1.8.0/.readthedocs.yaml +27 -0
- pybmodes-1.8.0/CHANGELOG.md +1709 -0
- pybmodes-1.8.0/CITATION.cff +38 -0
- pybmodes-1.8.0/CODE_OF_CONDUCT.md +47 -0
- pybmodes-1.8.0/CONTRIBUTING.md +121 -0
- pybmodes-1.8.0/LICENSE +202 -0
- pybmodes-1.8.0/MANIFEST.in +39 -0
- pybmodes-1.8.0/PKG-INFO +369 -0
- pybmodes-1.8.0/README.md +117 -0
- pybmodes-1.8.0/SECURITY.md +38 -0
- pybmodes-1.8.0/VALIDATION.md +331 -0
- pybmodes-1.8.0/docs/_static/.gitkeep +0 -0
- pybmodes-1.8.0/docs/api.rst +223 -0
- pybmodes-1.8.0/docs/api_contract.rst +418 -0
- pybmodes-1.8.0/docs/changelog.rst +46 -0
- pybmodes-1.8.0/docs/conf.py +104 -0
- pybmodes-1.8.0/docs/contributing.rst +61 -0
- pybmodes-1.8.0/docs/data_sources.rst +361 -0
- pybmodes-1.8.0/docs/deployment.rst +143 -0
- pybmodes-1.8.0/docs/index.rst +143 -0
- pybmodes-1.8.0/docs/installation.rst +246 -0
- pybmodes-1.8.0/docs/limitations.rst +275 -0
- pybmodes-1.8.0/docs/quickstart.rst +316 -0
- pybmodes-1.8.0/docs/release_checklist.rst +287 -0
- pybmodes-1.8.0/docs/theory.rst +336 -0
- pybmodes-1.8.0/docs/units.rst +321 -0
- pybmodes-1.8.0/docs/validation.rst +113 -0
- pybmodes-1.8.0/pyproject.toml +200 -0
- pybmodes-1.8.0/setup.cfg +4 -0
- pybmodes-1.8.0/src/pybmodes/__init__.py +188 -0
- pybmodes-1.8.0/src/pybmodes/_examples/__init__.py +45 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/FLOATING_CASES.md +144 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/README.md +150 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/VALIDATION_SUMMARY.md +63 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT-UMaineSemi_ElastoDyn.dat +261 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT-UMaineSemi_Tower.dat +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/IEA-15-240-RWT_Blade.dat +82 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea15mw_umainesemi/validation_report.txt +42 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_Blade.dat +62 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_ElastoDyn.dat +162 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/IEA-3.4-130-RWT_Tower.dat +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/iea34_land/validation_report.txt +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Blade.dat +83 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Onshore_ElastoDyn.dat +185 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/NRELOffshrBsline5MW_Tower.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_land/validation_report.txt +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_Blade.dat +83 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_ElastoDyn.dat +165 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_SubDyn.dat +109 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/NRELOffshrBsline5MW_OC3Monopile_Tower.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3monopile/validation_report.txt +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_Blade.dat +83 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_OC3Hywind_ElastoDyn.dat +234 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/NRELOffshrBsline5MW_OC3Hywind_Tower.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc3spar/validation_report.txt +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_Blade.dat +83 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_OC4DeepCwindSemi_ElastoDyn.dat +189 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/NRELOffshrBsline5MW_OC4DeepCwindSemi_Tower.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/before_patch.txt +17 -0
- pybmodes-1.8.0/src/pybmodes/_examples/reference_decks/nrel5mw_oc4semi/validation_report.txt +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/README.md +75 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/uniform_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/01_uniform_blade/uniform_blade_sec_props.dat +7 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/README.md +82 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/tower_topmass.bmi +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/02_tower_topmass/tower_topmass_sec_props.dat +7 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/README.md +103 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/rotating_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/03_rotating_uniform_blade/rotating_blade_sec_props.dat +7 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/README.md +94 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/cable.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/04_pinned_free_cable/cable_sec_props.dat +7 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/README.md +115 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_blade_sec_props.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_tower.bmi +60 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/01_nrel5mw_land_tower_sec_props.dat +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/01_nrel5mw_land/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_blade_sec_props.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/02_nrel5mw_oc3monopile_tower_sec_props.dat +20 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/02_nrel5mw_oc3monopile/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_blade_sec_props.dat +35 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_tower.bmi +60 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/03_iea34_land_tower_sec_props.dat +15 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/03_iea34_land/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_blade_sec_props.dat +35 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/04_iea10_monopile_tower_sec_props.dat +35 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/04_iea10_monopile/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_blade_sec_props.dat +55 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/05_iea15_monopile_tower_sec_props.dat +44 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/05_iea15_monopile/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_blade_sec_props.dat +64 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/06_iea22_monopile_tower_sec_props.dat +45 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/06_iea22_monopile/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_blade.bmi +51 -0
- 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
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/07_nrel5mw_oc3hywind_spar_tower.bmi +100 -0
- 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
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/07_nrel5mw_oc3hywind_spar/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_blade_sec_props.dat +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/08_nrel5mw_oc4semi_tower_sec_props.dat +16 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/08_nrel5mw_oc4semi/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_blade_sec_props.dat +55 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/09_iea15_umainesemi_tower_sec_props.dat +15 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/09_iea15_umainesemi/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_blade_sec_props.dat +64 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/10_iea22_semi_tower_sec_props.dat +35 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/10_iea22_semi/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_blade.bmi +51 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_blade_sec_props.dat +58 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_tower.bmi +100 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/11_upscale25_centraltower_tower_sec_props.dat +25 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/11_upscale25_centraltower/README.md +54 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/README.md +170 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/reference_turbines/build.py +1585 -0
- pybmodes-1.8.0/src/pybmodes/_examples/sample_inputs/verify.py +169 -0
- pybmodes-1.8.0/src/pybmodes/campbell/__init__.py +112 -0
- pybmodes-1.8.0/src/pybmodes/campbell/_classify.py +119 -0
- pybmodes-1.8.0/src/pybmodes/campbell/_mac.py +90 -0
- pybmodes-1.8.0/src/pybmodes/campbell/_models.py +210 -0
- pybmodes-1.8.0/src/pybmodes/campbell/_plot.py +393 -0
- pybmodes-1.8.0/src/pybmodes/campbell/_sweep.py +347 -0
- pybmodes-1.8.0/src/pybmodes/campbell/result.py +271 -0
- pybmodes-1.8.0/src/pybmodes/checks.py +445 -0
- pybmodes-1.8.0/src/pybmodes/cli.py +780 -0
- pybmodes-1.8.0/src/pybmodes/coords.py +120 -0
- pybmodes-1.8.0/src/pybmodes/elastodyn/__init__.py +44 -0
- pybmodes-1.8.0/src/pybmodes/elastodyn/params.py +798 -0
- pybmodes-1.8.0/src/pybmodes/elastodyn/validate.py +432 -0
- pybmodes-1.8.0/src/pybmodes/elastodyn/writer.py +97 -0
- pybmodes-1.8.0/src/pybmodes/fem/__init__.py +14 -0
- pybmodes-1.8.0/src/pybmodes/fem/assembly.py +314 -0
- pybmodes-1.8.0/src/pybmodes/fem/boundary.py +165 -0
- pybmodes-1.8.0/src/pybmodes/fem/element.py +394 -0
- pybmodes-1.8.0/src/pybmodes/fem/gauss.py +40 -0
- pybmodes-1.8.0/src/pybmodes/fem/nondim.py +376 -0
- pybmodes-1.8.0/src/pybmodes/fem/normalize.py +141 -0
- pybmodes-1.8.0/src/pybmodes/fem/platform_modes.py +153 -0
- pybmodes-1.8.0/src/pybmodes/fem/solver.py +245 -0
- pybmodes-1.8.0/src/pybmodes/fitting/__init__.py +18 -0
- pybmodes-1.8.0/src/pybmodes/fitting/poly_fit.py +153 -0
- pybmodes-1.8.0/src/pybmodes/io/__init__.py +56 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/__init__.py +92 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/adapter.py +527 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/lex.py +139 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/parser.py +558 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/types.py +213 -0
- pybmodes-1.8.0/src/pybmodes/io/_elastodyn/writer.py +233 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/__init__.py +42 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/arc_resolver.py +430 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/decouple.py +257 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/laminate.py +214 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/profile.py +201 -0
- pybmodes-1.8.0/src/pybmodes/io/_precomp/reduction.py +329 -0
- pybmodes-1.8.0/src/pybmodes/io/_serialize.py +148 -0
- pybmodes-1.8.0/src/pybmodes/io/bmi.py +733 -0
- pybmodes-1.8.0/src/pybmodes/io/elastodyn_reader.py +129 -0
- pybmodes-1.8.0/src/pybmodes/io/errors.py +191 -0
- pybmodes-1.8.0/src/pybmodes/io/geometry.py +135 -0
- pybmodes-1.8.0/src/pybmodes/io/out_parser.py +314 -0
- pybmodes-1.8.0/src/pybmodes/io/sec_props.py +187 -0
- pybmodes-1.8.0/src/pybmodes/io/subdyn_reader.py +612 -0
- pybmodes-1.8.0/src/pybmodes/io/wamit_reader.py +534 -0
- pybmodes-1.8.0/src/pybmodes/io/windio.py +322 -0
- pybmodes-1.8.0/src/pybmodes/io/windio_blade.py +588 -0
- pybmodes-1.8.0/src/pybmodes/io/windio_floating.py +466 -0
- pybmodes-1.8.0/src/pybmodes/mac.py +306 -0
- pybmodes-1.8.0/src/pybmodes/models/__init__.py +20 -0
- pybmodes-1.8.0/src/pybmodes/models/_pipeline.py +260 -0
- pybmodes-1.8.0/src/pybmodes/models/_platform.py +139 -0
- pybmodes-1.8.0/src/pybmodes/models/_shared.py +69 -0
- pybmodes-1.8.0/src/pybmodes/models/blade.py +271 -0
- pybmodes-1.8.0/src/pybmodes/models/result.py +443 -0
- pybmodes-1.8.0/src/pybmodes/models/tower.py +968 -0
- pybmodes-1.8.0/src/pybmodes/mooring/__init__.py +104 -0
- pybmodes-1.8.0/src/pybmodes/mooring/_catenary.py +113 -0
- pybmodes-1.8.0/src/pybmodes/mooring/_moordyn_parser.py +255 -0
- pybmodes-1.8.0/src/pybmodes/mooring/_rotation.py +41 -0
- pybmodes-1.8.0/src/pybmodes/mooring/system.py +608 -0
- pybmodes-1.8.0/src/pybmodes/mooring/types.py +248 -0
- pybmodes-1.8.0/src/pybmodes/options.py +173 -0
- pybmodes-1.8.0/src/pybmodes/plots/__init__.py +54 -0
- pybmodes-1.8.0/src/pybmodes/plots/environmental.py +365 -0
- pybmodes-1.8.0/src/pybmodes/plots/mode_shapes.py +791 -0
- pybmodes-1.8.0/src/pybmodes/plots/style.py +163 -0
- pybmodes-1.8.0/src/pybmodes/py.typed +0 -0
- pybmodes-1.8.0/src/pybmodes/report.py +623 -0
- pybmodes-1.8.0/src/pybmodes/workflows/__init__.py +118 -0
- pybmodes-1.8.0/src/pybmodes/workflows/_base.py +61 -0
- pybmodes-1.8.0/src/pybmodes/workflows/batch.py +400 -0
- pybmodes-1.8.0/src/pybmodes/workflows/campbell.py +195 -0
- pybmodes-1.8.0/src/pybmodes/workflows/examples.py +197 -0
- pybmodes-1.8.0/src/pybmodes/workflows/patch.py +387 -0
- pybmodes-1.8.0/src/pybmodes/workflows/report.py +206 -0
- pybmodes-1.8.0/src/pybmodes/workflows/validate.py +179 -0
- pybmodes-1.8.0/src/pybmodes/workflows/windio.py +552 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/PKG-INFO +369 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/SOURCES.txt +264 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/dependency_links.txt +1 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/entry_points.txt +2 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/requires.txt +33 -0
- pybmodes-1.8.0/src/pybmodes.egg-info/top_level.txt +1 -0
- pybmodes-1.8.0/tests/test_asymmetric_platform.py +397 -0
- pybmodes-1.8.0/tests/test_batch.py +199 -0
- pybmodes-1.8.0/tests/test_campbell.py +937 -0
- pybmodes-1.8.0/tests/test_campbell_helpers.py +167 -0
- pybmodes-1.8.0/tests/test_cases_compile_clean.py +87 -0
- pybmodes-1.8.0/tests/test_certtest.py +260 -0
- pybmodes-1.8.0/tests/test_checks.py +403 -0
- pybmodes-1.8.0/tests/test_classifier.py +436 -0
- pybmodes-1.8.0/tests/test_cli_patch_args.py +46 -0
- pybmodes-1.8.0/tests/test_coords.py +56 -0
- pybmodes-1.8.0/tests/test_decouple.py +143 -0
- pybmodes-1.8.0/tests/test_elastodyn.py +344 -0
- pybmodes-1.8.0/tests/test_elastodyn_compatible.py +242 -0
- pybmodes-1.8.0/tests/test_elastodyn_extra.py +448 -0
- pybmodes-1.8.0/tests/test_elastodyn_reader.py +443 -0
- pybmodes-1.8.0/tests/test_elastodyn_writer.py +147 -0
- pybmodes-1.8.0/tests/test_environmental.py +230 -0
- pybmodes-1.8.0/tests/test_examples_cli.py +123 -0
- pybmodes-1.8.0/tests/test_fitting.py +140 -0
- pybmodes-1.8.0/tests/test_fitting_extra.py +137 -0
- pybmodes-1.8.0/tests/test_floating_samples.py +212 -0
- pybmodes-1.8.0/tests/test_floating_samples_spectra.py +135 -0
- pybmodes-1.8.0/tests/test_geometry_windio.py +706 -0
- pybmodes-1.8.0/tests/test_io.py +370 -0
- pybmodes-1.8.0/tests/test_io_errors.py +165 -0
- pybmodes-1.8.0/tests/test_mac.py +206 -0
- pybmodes-1.8.0/tests/test_models.py +158 -0
- pybmodes-1.8.0/tests/test_mooring.py +970 -0
- pybmodes-1.8.0/tests/test_notebooks.py +169 -0
- pybmodes-1.8.0/tests/test_out_parser.py +409 -0
- pybmodes-1.8.0/tests/test_parser_negative_paths.py +805 -0
- pybmodes-1.8.0/tests/test_platform_mode_labels.py +136 -0
- pybmodes-1.8.0/tests/test_plot_mode_shapes.py +184 -0
- pybmodes-1.8.0/tests/test_reference_decks.py +121 -0
- pybmodes-1.8.0/tests/test_report.py +201 -0
- pybmodes-1.8.0/tests/test_serialize.py +742 -0
- pybmodes-1.8.0/tests/test_subdyn_reader.py +342 -0
- pybmodes-1.8.0/tests/test_validate.py +447 -0
- pybmodes-1.8.0/tests/test_wamit_reader.py +179 -0
- pybmodes-1.8.0/tests/test_wamit_reader_synth.py +62 -0
- pybmodes-1.8.0/tests/test_windio_blade.py +1330 -0
- pybmodes-1.8.0/tests/test_windio_cli.py +129 -0
- pybmodes-1.8.0/tests/test_windio_floating.py +1011 -0
- 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
|