├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── python-publish-test.yml │ └── python-publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── doc_CollectionCost.rst ├── doc_CostModule.rst ├── doc_DefaultMasterInputDict.rst ├── doc_ErectionCost.rst ├── doc_FoundationCost.rst ├── doc_GridConnectionCost.rst ├── doc_ManagementCost.rst ├── doc_Manager.rst ├── doc_SitePreparationCost.rst ├── doc_SubstationCost.rst ├── doc_WeatherDelay.rst ├── doc_WeatherWindowCSVReader.rst ├── doc_XlsxFileOperations.rst ├── doc_XlsxGenerator.rst ├── doc_XlsxManagerRunner.rst ├── doc_XlsxParallelManagerRunner.rst ├── doc_XlsxReader.rst ├── doc_XlsxSerialManagerRunner.rst ├── doc_XlsxValidator.rst ├── index.rst └── make.bat ├── environment.yml ├── input └── project_list.xlsx ├── installation_instructions ├── 01_windows_anaconda_prompt_menu.png ├── 02_make_folders.png ├── 03_clone_the_repo.png ├── 05_download_zip.png ├── 06_landbosse_dev.png ├── 11_copy_project_input_template.png ├── 12_paste_project_input_template.png ├── 13_done_pasting.png ├── macos_developer.md ├── normal-operation-flowchart.png ├── operation_and_folder_structure.md ├── validation-flowchart.png └── windows_end_user.md ├── landbosse ├── __init__.py ├── excelio │ ├── CsvGenerator.py │ ├── GridSearchTree.py │ ├── WeatherWindowCSVReader.py │ ├── XlsxDataframeCache.py │ ├── XlsxFileOperations.py │ ├── XlsxGenerator.py │ ├── XlsxManagerRunner.py │ ├── XlsxOperationException.py │ ├── XlsxParallelManagerRunner.py │ ├── XlsxReader.py │ ├── XlsxSerialManagerRunner.py │ ├── XlsxValidator.py │ └── __init__.py ├── landbosse_omdao │ ├── CsvGenerator.py │ ├── GridSearchTree.py │ ├── OpenMDAODataframeCache.py │ ├── WeatherWindowCSVReader.py │ ├── XlsxOperationException.py │ ├── XlsxValidator.py │ ├── __init__.py │ └── landbosse.py ├── landbosse_runner.py ├── model │ ├── CollectionCost.py │ ├── CostModule.py │ ├── DefaultMasterInputDict.py │ ├── DevelopmentCost.py │ ├── ErectionCost.py │ ├── FoundationCost.py │ ├── GridConnectionCost.py │ ├── ManagementCost.py │ ├── Manager.py │ ├── SitePreparationCost.py │ ├── SubstationCost.py │ ├── TransportCost.py │ ├── TurbineCost.py │ ├── WeatherDelay.py │ └── __init__.py └── tests │ ├── __init__.py │ ├── landbosse_omdao │ ├── __init__.py │ └── test_landbosse.py │ └── model │ ├── __init__.py │ ├── test_CollectionCost.py │ ├── test_DevelopmentCost.py │ ├── test_ErectionCost.py │ ├── test_FoundationCost.py │ ├── test_GridConnectionCost.py │ ├── test_ManagementCost.py │ ├── test_SitePreparationCost.py │ ├── test_SubstationCost.py │ ├── test_WeatherDelay.py │ └── test_filename_functions.py ├── main.py ├── post_processing_scripts ├── extended_landbosse_output_to_csv_and_pgsql.py ├── extract_crane_choice.py ├── lcoe.py └── turbine_scaling.py ├── project_input_template ├── README.md ├── landbosse-expected-validation-data.xlsx ├── project_data │ ├── Vestas_V47_public.xlsx │ ├── clipper_25_public.xlsx │ ├── ge15_expected_validation.xlsx │ ├── ge15_public.xlsx │ ├── ge15_public_dist.xlsx │ ├── iea36_120_project_data.xlsx │ ├── iea36_85_project_data.xlsx │ └── northwind_100_public.xlsx ├── project_list.xlsx └── project_list_simplified.xlsx ├── pyproject.toml └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/workflows/python-publish-test.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doc_CollectionCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_CollectionCost.rst -------------------------------------------------------------------------------- /docs/doc_CostModule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_CostModule.rst -------------------------------------------------------------------------------- /docs/doc_DefaultMasterInputDict.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_DefaultMasterInputDict.rst -------------------------------------------------------------------------------- /docs/doc_ErectionCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_ErectionCost.rst -------------------------------------------------------------------------------- /docs/doc_FoundationCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_FoundationCost.rst -------------------------------------------------------------------------------- /docs/doc_GridConnectionCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_GridConnectionCost.rst -------------------------------------------------------------------------------- /docs/doc_ManagementCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_ManagementCost.rst -------------------------------------------------------------------------------- /docs/doc_Manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_Manager.rst -------------------------------------------------------------------------------- /docs/doc_SitePreparationCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_SitePreparationCost.rst -------------------------------------------------------------------------------- /docs/doc_SubstationCost.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_SubstationCost.rst -------------------------------------------------------------------------------- /docs/doc_WeatherDelay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_WeatherDelay.rst -------------------------------------------------------------------------------- /docs/doc_WeatherWindowCSVReader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_WeatherWindowCSVReader.rst -------------------------------------------------------------------------------- /docs/doc_XlsxFileOperations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxFileOperations.rst -------------------------------------------------------------------------------- /docs/doc_XlsxGenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxGenerator.rst -------------------------------------------------------------------------------- /docs/doc_XlsxManagerRunner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxManagerRunner.rst -------------------------------------------------------------------------------- /docs/doc_XlsxParallelManagerRunner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxParallelManagerRunner.rst -------------------------------------------------------------------------------- /docs/doc_XlsxReader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxReader.rst -------------------------------------------------------------------------------- /docs/doc_XlsxSerialManagerRunner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxSerialManagerRunner.rst -------------------------------------------------------------------------------- /docs/doc_XlsxValidator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/doc_XlsxValidator.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/docs/make.bat -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/environment.yml -------------------------------------------------------------------------------- /input/project_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/input/project_list.xlsx -------------------------------------------------------------------------------- /installation_instructions/01_windows_anaconda_prompt_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/01_windows_anaconda_prompt_menu.png -------------------------------------------------------------------------------- /installation_instructions/02_make_folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/02_make_folders.png -------------------------------------------------------------------------------- /installation_instructions/03_clone_the_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/03_clone_the_repo.png -------------------------------------------------------------------------------- /installation_instructions/05_download_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/05_download_zip.png -------------------------------------------------------------------------------- /installation_instructions/06_landbosse_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/06_landbosse_dev.png -------------------------------------------------------------------------------- /installation_instructions/11_copy_project_input_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/11_copy_project_input_template.png -------------------------------------------------------------------------------- /installation_instructions/12_paste_project_input_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/12_paste_project_input_template.png -------------------------------------------------------------------------------- /installation_instructions/13_done_pasting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/13_done_pasting.png -------------------------------------------------------------------------------- /installation_instructions/macos_developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/macos_developer.md -------------------------------------------------------------------------------- /installation_instructions/normal-operation-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/normal-operation-flowchart.png -------------------------------------------------------------------------------- /installation_instructions/operation_and_folder_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/operation_and_folder_structure.md -------------------------------------------------------------------------------- /installation_instructions/validation-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/validation-flowchart.png -------------------------------------------------------------------------------- /installation_instructions/windows_end_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/installation_instructions/windows_end_user.md -------------------------------------------------------------------------------- /landbosse/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = "2.6.1" 3 | -------------------------------------------------------------------------------- /landbosse/excelio/CsvGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/CsvGenerator.py -------------------------------------------------------------------------------- /landbosse/excelio/GridSearchTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/GridSearchTree.py -------------------------------------------------------------------------------- /landbosse/excelio/WeatherWindowCSVReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/WeatherWindowCSVReader.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxDataframeCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxDataframeCache.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxFileOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxFileOperations.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxGenerator.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxManagerRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxManagerRunner.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxOperationException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxOperationException.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxParallelManagerRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxParallelManagerRunner.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxReader.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxSerialManagerRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxSerialManagerRunner.py -------------------------------------------------------------------------------- /landbosse/excelio/XlsxValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/XlsxValidator.py -------------------------------------------------------------------------------- /landbosse/excelio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/excelio/__init__.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/CsvGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/CsvGenerator.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/GridSearchTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/GridSearchTree.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/OpenMDAODataframeCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/OpenMDAODataframeCache.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/WeatherWindowCSVReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/WeatherWindowCSVReader.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/XlsxOperationException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/XlsxOperationException.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/XlsxValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/XlsxValidator.py -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landbosse/landbosse_omdao/landbosse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_omdao/landbosse.py -------------------------------------------------------------------------------- /landbosse/landbosse_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/landbosse_runner.py -------------------------------------------------------------------------------- /landbosse/model/CollectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/CollectionCost.py -------------------------------------------------------------------------------- /landbosse/model/CostModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/CostModule.py -------------------------------------------------------------------------------- /landbosse/model/DefaultMasterInputDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/DefaultMasterInputDict.py -------------------------------------------------------------------------------- /landbosse/model/DevelopmentCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/DevelopmentCost.py -------------------------------------------------------------------------------- /landbosse/model/ErectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/ErectionCost.py -------------------------------------------------------------------------------- /landbosse/model/FoundationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/FoundationCost.py -------------------------------------------------------------------------------- /landbosse/model/GridConnectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/GridConnectionCost.py -------------------------------------------------------------------------------- /landbosse/model/ManagementCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/ManagementCost.py -------------------------------------------------------------------------------- /landbosse/model/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/Manager.py -------------------------------------------------------------------------------- /landbosse/model/SitePreparationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/SitePreparationCost.py -------------------------------------------------------------------------------- /landbosse/model/SubstationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/SubstationCost.py -------------------------------------------------------------------------------- /landbosse/model/TransportCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/TransportCost.py -------------------------------------------------------------------------------- /landbosse/model/TurbineCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/TurbineCost.py -------------------------------------------------------------------------------- /landbosse/model/WeatherDelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/WeatherDelay.py -------------------------------------------------------------------------------- /landbosse/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/model/__init__.py -------------------------------------------------------------------------------- /landbosse/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landbosse/tests/landbosse_omdao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landbosse/tests/landbosse_omdao/test_landbosse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/landbosse_omdao/test_landbosse.py -------------------------------------------------------------------------------- /landbosse/tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landbosse/tests/model/test_CollectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_CollectionCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_DevelopmentCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_DevelopmentCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_ErectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_ErectionCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_FoundationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_FoundationCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_GridConnectionCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_GridConnectionCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_ManagementCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_ManagementCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_SitePreparationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_SitePreparationCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_SubstationCost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_SubstationCost.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_WeatherDelay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_WeatherDelay.py -------------------------------------------------------------------------------- /landbosse/tests/model/test_filename_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/landbosse/tests/model/test_filename_functions.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/main.py -------------------------------------------------------------------------------- /post_processing_scripts/extended_landbosse_output_to_csv_and_pgsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/post_processing_scripts/extended_landbosse_output_to_csv_and_pgsql.py -------------------------------------------------------------------------------- /post_processing_scripts/extract_crane_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/post_processing_scripts/extract_crane_choice.py -------------------------------------------------------------------------------- /post_processing_scripts/lcoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/post_processing_scripts/lcoe.py -------------------------------------------------------------------------------- /post_processing_scripts/turbine_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/post_processing_scripts/turbine_scaling.py -------------------------------------------------------------------------------- /project_input_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/README.md -------------------------------------------------------------------------------- /project_input_template/landbosse-expected-validation-data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/landbosse-expected-validation-data.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/Vestas_V47_public.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/Vestas_V47_public.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/clipper_25_public.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/clipper_25_public.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/ge15_expected_validation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/ge15_expected_validation.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/ge15_public.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/ge15_public.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/ge15_public_dist.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/ge15_public_dist.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/iea36_120_project_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/iea36_120_project_data.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/iea36_85_project_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/iea36_85_project_data.xlsx -------------------------------------------------------------------------------- /project_input_template/project_data/northwind_100_public.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_data/northwind_100_public.xlsx -------------------------------------------------------------------------------- /project_input_template/project_list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_list.xlsx -------------------------------------------------------------------------------- /project_input_template/project_list_simplified.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/project_input_template/project_list_simplified.xlsx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISDEM/LandBOSSE/HEAD/setup.py --------------------------------------------------------------------------------