├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── gh-pages.yaml │ ├── main.yml │ └── python-publish.yaml ├── .gitignore ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── assets │ └── gh-pages-redirect.html ├── conf.py ├── generate_switcher_json.py ├── index.rst ├── jsfh_config.json ├── jsfh_template │ ├── Readme.md │ ├── badge_type.html │ ├── base.html │ ├── breadcrumbs.html │ ├── config_schema.json │ ├── content.html │ ├── macro_restriction.html │ ├── section_array.html │ ├── section_conditional_subschema.html │ ├── section_description.html │ ├── section_examples.html │ ├── section_not.html │ ├── section_properties.html │ ├── section_undocumented_required_properties.html │ └── tabbed_section.html ├── logo │ └── windIO_logo.png ├── make.bat ├── schema_export.py └── source │ ├── .DS_Store │ ├── detailed_turbine_documentation.rst │ ├── developer_guide.rst │ ├── how_to_build_a_turbine_model.rst │ ├── images │ ├── .DS_Store │ ├── airfoil_TE.svg │ ├── airfoil_anchor+offset.svg │ ├── airfoil_cap_intersection.svg │ ├── airfoil_midpoint_nd_arc.svg │ ├── airfoil_nd_arc.py │ ├── airfoil_nd_arc.svg │ ├── airfoil_web_intersection.svg │ ├── chord_reference_system.svg │ ├── reference_axis.png │ └── structure1.png │ ├── plant_schema.rst │ └── turbine_schema.rst ├── pyproject.toml ├── test ├── plant │ ├── __init__.py │ ├── conftest.py │ └── wind_farm_schema_unit_test.py ├── test_all_plant_examples.py ├── test_schema.py ├── test_yaml.py ├── turbine │ ├── test_turbine.py │ └── v1p0 │ │ ├── IEA-15-240-RWT.yaml │ │ ├── IEA-15-240-RWT_VolturnUS-S.yaml │ │ ├── IEA-22-280-RWT.yaml │ │ └── IEA-22-280-RWT_Floater.yaml └── validation_test.py └── windIO ├── __init__.py ├── converters └── windIO2windIO.py ├── examples ├── __init__.py ├── plant │ ├── __init__.py │ ├── plant_energy_resource │ │ ├── GriddedResource.nc │ │ ├── GriddedResource.yaml │ │ ├── GriddedResource_nc.yaml │ │ ├── HorizontalProfile.nc │ │ ├── HourlyVariation_atHubHeight.nc │ │ ├── HourlyVariation_verticalProfile.nc │ │ ├── IEA37_case_study_1_2_energy_resource.yaml │ │ ├── IEA37_case_study_3_energy_resource.yaml │ │ ├── IEA37_case_study_4_energy_resource.yaml │ │ ├── InflowMap_xz.nc │ │ ├── Stochastic_atHubHeight.nc │ │ ├── Stochastic_vertical_profiles.nc │ │ ├── UniformResource.nc │ │ ├── UniformResource.yaml │ │ ├── UniformResource_nc.yaml │ │ ├── UniformWeibullResource.nc │ │ ├── UniformWeibullResource.yaml │ │ ├── UniformWeibullResource_nc.yaml │ │ ├── WTResource.nc │ │ ├── WTResource.yaml │ │ ├── WTResource_nc.yaml │ │ ├── first_three_times.nc │ │ ├── netcdf │ │ │ ├── Plant_AEP.ipynb │ │ │ ├── UniformResource.nc │ │ │ └── make_example_data.py │ │ ├── timeseries.yaml │ │ ├── timeseries_vertical_variation.yaml │ │ ├── timeseries_with_netcdf.yaml │ │ └── verticalVariationTimeseries.nc │ ├── plant_energy_site │ │ ├── IEA37_case_study_1_2_energy_site.yaml │ │ ├── IEA37_case_study_3_energy_site.yaml │ │ ├── IEA37_case_study_4_energy_site.yaml │ │ ├── flow_case_epdf_site.yaml │ │ ├── flow_case_timeseries_site.yaml │ │ └── flow_case_weibull_pdf_site.yaml │ ├── plant_energy_turbine │ │ ├── IEA37_10MW_turbine.yaml │ │ ├── IEA37_15MW_turbine.yaml │ │ └── IEA37_3.35MW_turbine.yaml │ ├── plant_wind_farm │ │ ├── IEA37_case_study_1_2_wind_farm.yaml │ │ ├── IEA37_case_study_3_wind_farm.yaml │ │ ├── IEA37_case_study_4_wind_farm.yaml │ │ └── multiple_types.yaml │ └── wind_energy_system │ │ ├── IEA37_case_study_1_2_wind_energy_system.yaml │ │ ├── IEA37_case_study_3_wind_energy_system.yaml │ │ ├── IEA37_case_study_4_wind_energy_system.yaml │ │ ├── flow_example_epdf.yaml │ │ ├── flow_example_timeseries.yaml │ │ └── flow_example_weibull_pdf.yaml └── turbine │ ├── IEA-15-240-RWT.yaml │ ├── IEA-15-240-RWT_VolturnUS-S.yaml │ ├── IEA-22-280-RWT.yaml │ ├── IEA-22-280-RWT_Floater.yaml │ └── __init__.py ├── schemas ├── __init__.py ├── plant │ ├── __init__.py │ ├── common.yaml │ ├── energy_resource.yaml │ ├── scada_data.yaml │ ├── simulation_outputs.yaml │ ├── site.yaml │ ├── turbine.yaml │ ├── wind_energy_system.yaml │ └── wind_farm.yaml └── turbine │ ├── __init__.py │ └── turbine_schema.yaml ├── validator.py └── yaml.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/.github/workflows/gh-pages.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/.github/workflows/python-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/gh-pages-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/assets/gh-pages-redirect.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/generate_switcher_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/generate_switcher_json.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/jsfh_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_config.json -------------------------------------------------------------------------------- /docs/jsfh_template/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/Readme.md -------------------------------------------------------------------------------- /docs/jsfh_template/badge_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/badge_type.html -------------------------------------------------------------------------------- /docs/jsfh_template/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/base.html -------------------------------------------------------------------------------- /docs/jsfh_template/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/breadcrumbs.html -------------------------------------------------------------------------------- /docs/jsfh_template/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/config_schema.json -------------------------------------------------------------------------------- /docs/jsfh_template/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/content.html -------------------------------------------------------------------------------- /docs/jsfh_template/macro_restriction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/macro_restriction.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_array.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_conditional_subschema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_conditional_subschema.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_description.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_examples.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_not.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_not.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_properties.html -------------------------------------------------------------------------------- /docs/jsfh_template/section_undocumented_required_properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/section_undocumented_required_properties.html -------------------------------------------------------------------------------- /docs/jsfh_template/tabbed_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/jsfh_template/tabbed_section.html -------------------------------------------------------------------------------- /docs/logo/windIO_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/logo/windIO_logo.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/schema_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/schema_export.py -------------------------------------------------------------------------------- /docs/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/.DS_Store -------------------------------------------------------------------------------- /docs/source/detailed_turbine_documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/detailed_turbine_documentation.rst -------------------------------------------------------------------------------- /docs/source/developer_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/developer_guide.rst -------------------------------------------------------------------------------- /docs/source/how_to_build_a_turbine_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/how_to_build_a_turbine_model.rst -------------------------------------------------------------------------------- /docs/source/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/.DS_Store -------------------------------------------------------------------------------- /docs/source/images/airfoil_TE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_TE.svg -------------------------------------------------------------------------------- /docs/source/images/airfoil_anchor+offset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_anchor+offset.svg -------------------------------------------------------------------------------- /docs/source/images/airfoil_cap_intersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_cap_intersection.svg -------------------------------------------------------------------------------- /docs/source/images/airfoil_midpoint_nd_arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_midpoint_nd_arc.svg -------------------------------------------------------------------------------- /docs/source/images/airfoil_nd_arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_nd_arc.py -------------------------------------------------------------------------------- /docs/source/images/airfoil_nd_arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_nd_arc.svg -------------------------------------------------------------------------------- /docs/source/images/airfoil_web_intersection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/airfoil_web_intersection.svg -------------------------------------------------------------------------------- /docs/source/images/chord_reference_system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/chord_reference_system.svg -------------------------------------------------------------------------------- /docs/source/images/reference_axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/reference_axis.png -------------------------------------------------------------------------------- /docs/source/images/structure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/images/structure1.png -------------------------------------------------------------------------------- /docs/source/plant_schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/plant_schema.rst -------------------------------------------------------------------------------- /docs/source/turbine_schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/docs/source/turbine_schema.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/plant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/plant/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/plant/conftest.py -------------------------------------------------------------------------------- /test/plant/wind_farm_schema_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/plant/wind_farm_schema_unit_test.py -------------------------------------------------------------------------------- /test/test_all_plant_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/test_all_plant_examples.py -------------------------------------------------------------------------------- /test/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/test_schema.py -------------------------------------------------------------------------------- /test/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/test_yaml.py -------------------------------------------------------------------------------- /test/turbine/test_turbine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/turbine/test_turbine.py -------------------------------------------------------------------------------- /test/turbine/v1p0/IEA-15-240-RWT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/turbine/v1p0/IEA-15-240-RWT.yaml -------------------------------------------------------------------------------- /test/turbine/v1p0/IEA-15-240-RWT_VolturnUS-S.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/turbine/v1p0/IEA-15-240-RWT_VolturnUS-S.yaml -------------------------------------------------------------------------------- /test/turbine/v1p0/IEA-22-280-RWT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/turbine/v1p0/IEA-22-280-RWT.yaml -------------------------------------------------------------------------------- /test/turbine/v1p0/IEA-22-280-RWT_Floater.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/turbine/v1p0/IEA-22-280-RWT_Floater.yaml -------------------------------------------------------------------------------- /test/validation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/test/validation_test.py -------------------------------------------------------------------------------- /windIO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/__init__.py -------------------------------------------------------------------------------- /windIO/converters/windIO2windIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/converters/windIO2windIO.py -------------------------------------------------------------------------------- /windIO/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windIO/examples/plant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/GriddedResource.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/GriddedResource.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/GriddedResource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/GriddedResource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/GriddedResource_nc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/GriddedResource_nc.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/HorizontalProfile.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/HorizontalProfile.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/HourlyVariation_atHubHeight.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/HourlyVariation_atHubHeight.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/HourlyVariation_verticalProfile.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/HourlyVariation_verticalProfile.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/IEA37_case_study_1_2_energy_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/IEA37_case_study_1_2_energy_resource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/IEA37_case_study_3_energy_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/IEA37_case_study_3_energy_resource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/IEA37_case_study_4_energy_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/IEA37_case_study_4_energy_resource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/InflowMap_xz.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/InflowMap_xz.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/Stochastic_atHubHeight.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/Stochastic_atHubHeight.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/Stochastic_vertical_profiles.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/Stochastic_vertical_profiles.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformResource.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformResource.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformResource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformResource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformResource_nc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformResource_nc.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformWeibullResource.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformWeibullResource.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformWeibullResource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformWeibullResource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/UniformWeibullResource_nc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/UniformWeibullResource_nc.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/WTResource.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/WTResource.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/WTResource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/WTResource.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/WTResource_nc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/WTResource_nc.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/first_three_times.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/first_three_times.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/netcdf/Plant_AEP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/netcdf/Plant_AEP.ipynb -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/netcdf/UniformResource.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/netcdf/UniformResource.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/netcdf/make_example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/netcdf/make_example_data.py -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/timeseries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/timeseries.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/timeseries_vertical_variation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/timeseries_vertical_variation.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/timeseries_with_netcdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/timeseries_with_netcdf.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_resource/verticalVariationTimeseries.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_resource/verticalVariationTimeseries.nc -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/IEA37_case_study_1_2_energy_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/IEA37_case_study_1_2_energy_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/IEA37_case_study_3_energy_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/IEA37_case_study_3_energy_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/IEA37_case_study_4_energy_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/IEA37_case_study_4_energy_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/flow_case_epdf_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/flow_case_epdf_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/flow_case_timeseries_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/flow_case_timeseries_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_site/flow_case_weibull_pdf_site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_site/flow_case_weibull_pdf_site.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_turbine/IEA37_10MW_turbine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_turbine/IEA37_10MW_turbine.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_turbine/IEA37_15MW_turbine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_turbine/IEA37_15MW_turbine.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_energy_turbine/IEA37_3.35MW_turbine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_energy_turbine/IEA37_3.35MW_turbine.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_wind_farm/IEA37_case_study_1_2_wind_farm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_wind_farm/IEA37_case_study_1_2_wind_farm.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_wind_farm/IEA37_case_study_3_wind_farm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_wind_farm/IEA37_case_study_3_wind_farm.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_wind_farm/IEA37_case_study_4_wind_farm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_wind_farm/IEA37_case_study_4_wind_farm.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/plant_wind_farm/multiple_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/plant_wind_farm/multiple_types.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/IEA37_case_study_1_2_wind_energy_system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/IEA37_case_study_1_2_wind_energy_system.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/IEA37_case_study_3_wind_energy_system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/IEA37_case_study_3_wind_energy_system.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/IEA37_case_study_4_wind_energy_system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/IEA37_case_study_4_wind_energy_system.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/flow_example_epdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/flow_example_epdf.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/flow_example_timeseries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/flow_example_timeseries.yaml -------------------------------------------------------------------------------- /windIO/examples/plant/wind_energy_system/flow_example_weibull_pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/plant/wind_energy_system/flow_example_weibull_pdf.yaml -------------------------------------------------------------------------------- /windIO/examples/turbine/IEA-15-240-RWT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/turbine/IEA-15-240-RWT.yaml -------------------------------------------------------------------------------- /windIO/examples/turbine/IEA-15-240-RWT_VolturnUS-S.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/turbine/IEA-15-240-RWT_VolturnUS-S.yaml -------------------------------------------------------------------------------- /windIO/examples/turbine/IEA-22-280-RWT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/turbine/IEA-22-280-RWT.yaml -------------------------------------------------------------------------------- /windIO/examples/turbine/IEA-22-280-RWT_Floater.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/examples/turbine/IEA-22-280-RWT_Floater.yaml -------------------------------------------------------------------------------- /windIO/examples/turbine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windIO/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/__init__.py -------------------------------------------------------------------------------- /windIO/schemas/plant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windIO/schemas/plant/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/common.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/energy_resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/energy_resource.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/scada_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/scada_data.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/simulation_outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/simulation_outputs.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/site.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/turbine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/turbine.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/wind_energy_system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/wind_energy_system.yaml -------------------------------------------------------------------------------- /windIO/schemas/plant/wind_farm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/plant/wind_farm.yaml -------------------------------------------------------------------------------- /windIO/schemas/turbine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windIO/schemas/turbine/turbine_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/schemas/turbine/turbine_schema.yaml -------------------------------------------------------------------------------- /windIO/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/validator.py -------------------------------------------------------------------------------- /windIO/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEAWindSystems/windIO/HEAD/windIO/yaml.py --------------------------------------------------------------------------------