h2integrate 0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- h2integrate/__init__.py +1 -0
- h2integrate/simulation/__init__.py +0 -0
- h2integrate/simulation/h2integrate_simulation.py +2429 -0
- h2integrate/simulation/technologies/__init__.py +0 -0
- h2integrate/simulation/technologies/ammonia/__init__.py +0 -0
- h2integrate/simulation/technologies/ammonia/ammonia.py +711 -0
- h2integrate/simulation/technologies/hydrogen/__init__.py +1 -0
- h2integrate/simulation/technologies/hydrogen/desal/__init__.py +0 -0
- h2integrate/simulation/technologies/hydrogen/desal/desal_model.py +167 -0
- h2integrate/simulation/technologies/hydrogen/desal/desal_model_eco.py +136 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/H2_cost_model.py +342 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/BOP_efficiency_BOL.csv +87 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/PEM_BOP.py +136 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_BOP/README.md +26 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_H2_LT_electrolyzer.py +516 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_H2_LT_electrolyzer_Clusters.py +1171 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_Singlitico_model.py +400 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_costs_custom.py +24 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_electrolyzer_IVcurve.py +657 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/PEM_tools.py +58 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/__init__.py +13 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/optimization_utils_linear.py +200 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/pem_cost_tools.py +197 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/pem_mass_and_footprint.py +93 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/run_PEM_master.py +289 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_PEM.py +239 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_PEM_eco.py +110 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/run_h2_clusters.py +233 -0
- h2integrate/simulation/technologies/hydrogen/electrolysis/test_opt.ipynb +146 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/Bulk Hydrogen Cost as Function of Capacity.docx +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/__init__.py +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/__init__.py +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/lined_rock_cavern/lined_rock_cavern.py +179 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/README.md +117 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/__init__.py +3 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/on_turbine/on_turbine_hydrogen_storage.py +527 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/__init__.py +3 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pipe_storage/underground_pipe_storage.py +187 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/__init__.py +8 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_all.py +255 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Compressed_gas_function.py +791 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/README.md +54 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/Tankinator.xlsx +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/compressed_gas_storage_model_20221021/__init__.py +6 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/material_properties.json +503 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/tankinator.py +818 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/pressure_vessel/von_mises.py +97 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/__init__.py +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/salt_cavern/salt_cavern.py +179 -0
- h2integrate/simulation/technologies/hydrogen/h2_storage/storage_sizing.py +84 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/__init__.py +0 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/pipe_dimensions_metric.csv +44 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_costs_per_kg.csv +10 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/data_tables/steel_mechanical_props.csv +11 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/h2_compression.py +206 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/h2_export_pipe.py +436 -0
- h2integrate/simulation/technologies/hydrogen/h2_transport/h2_pipe_array.py +126 -0
- h2integrate/simulation/technologies/iron/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/iron.py +365 -0
- h2integrate/simulation/technologies/iron/load_top_down_coeffs.py +74 -0
- h2integrate/simulation/technologies/iron/martin_ore/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/martin_ore/cost_coeffs.csv +27 -0
- h2integrate/simulation/technologies/iron/martin_ore/cost_inputs.csv +27 -0
- h2integrate/simulation/technologies/iron/martin_ore/cost_model.py +126 -0
- h2integrate/simulation/technologies/iron/martin_ore/finance_model.py +212 -0
- h2integrate/simulation/technologies/iron/martin_ore/perf_coeffs.csv +29 -0
- h2integrate/simulation/technologies/iron/martin_ore/perf_inputs.csv +29 -0
- h2integrate/simulation/technologies/iron/martin_ore/perf_model.py +95 -0
- h2integrate/simulation/technologies/iron/martin_transport/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/martin_transport/iron_transport.py +146 -0
- h2integrate/simulation/technologies/iron/martin_transport/shipping_coords.csv +13 -0
- h2integrate/simulation/technologies/iron/model_locations.yaml +53 -0
- h2integrate/simulation/technologies/iron/peters/cost_coeffs.csv +3 -0
- h2integrate/simulation/technologies/iron/peters/cost_inputs.csv +3 -0
- h2integrate/simulation/technologies/iron/peters/cost_model.py +8 -0
- h2integrate/simulation/technologies/iron/rosner/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/rosner/cost_coeffs.csv +38 -0
- h2integrate/simulation/technologies/iron/rosner/cost_inputs.csv +72 -0
- h2integrate/simulation/technologies/iron/rosner/cost_model.py +329 -0
- h2integrate/simulation/technologies/iron/rosner/finance_model.py +262 -0
- h2integrate/simulation/technologies/iron/rosner/perf_coeffs.csv +145 -0
- h2integrate/simulation/technologies/iron/rosner/perf_inputs.csv +145 -0
- h2integrate/simulation/technologies/iron/rosner/perf_model.py +106 -0
- h2integrate/simulation/technologies/iron/rosner_ore/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/rosner_ore/finance_model.py +210 -0
- h2integrate/simulation/technologies/iron/rosner_override/__init__.py +0 -0
- h2integrate/simulation/technologies/iron/rosner_override/finance_model.py +265 -0
- h2integrate/simulation/technologies/iron/stinn/cost_coeffs.csv +8 -0
- h2integrate/simulation/technologies/iron/stinn/cost_model.py +126 -0
- h2integrate/simulation/technologies/iron/top_down_coeffs.csv +18 -0
- h2integrate/simulation/technologies/offshore/__init__.py +8 -0
- h2integrate/simulation/technologies/offshore/all_platforms.py +65 -0
- h2integrate/simulation/technologies/offshore/example_fixed_project.yaml +16 -0
- h2integrate/simulation/technologies/offshore/example_floating_project.yaml +16 -0
- h2integrate/simulation/technologies/offshore/fixed_platform.py +311 -0
- h2integrate/simulation/technologies/offshore/floating_platform.py +357 -0
- h2integrate/simulation/technologies/steel/__init__.py +0 -0
- h2integrate/simulation/technologies/steel/steel.py +951 -0
- h2integrate/to_organize/H2_Analysis/2020ATB_NREL_Reference_7MW_200.csv +90 -0
- h2integrate/to_organize/H2_Analysis/H2AModel.py +1323 -0
- h2integrate/to_organize/H2_Analysis/LCA_single_scenario.py +202 -0
- h2integrate/to_organize/H2_Analysis/LCA_single_scenario_ProFAST.py +221 -0
- h2integrate/to_organize/H2_Analysis/__init__.py +0 -0
- h2integrate/to_organize/H2_Analysis/compressor.py +160 -0
- h2integrate/to_organize/H2_Analysis/h2_main.py +728 -0
- h2integrate/to_organize/H2_Analysis/h2_optimize_gf.py +145 -0
- h2integrate/to_organize/H2_Analysis/h2_setup_optimize.py +708 -0
- h2integrate/to_organize/H2_Analysis/hopp_for_h2.py +237 -0
- h2integrate/to_organize/H2_Analysis/hopp_for_h2_floris.py +226 -0
- h2integrate/to_organize/H2_Analysis/hydrogen_steel_pipe_cost_functions.py +230 -0
- h2integrate/to_organize/H2_Analysis/run_h2a.py +97 -0
- h2integrate/to_organize/H2_Analysis/simple_cash_annuals.py +37 -0
- h2integrate/to_organize/H2_Analysis/simple_dispatch.py +64 -0
- h2integrate/to_organize/__init__.py +0 -0
- h2integrate/to_organize/distributed_pipe_cost_analysis.py +265 -0
- h2integrate/to_organize/gradient_free.py +702 -0
- h2integrate/to_organize/hopp_tools_steel.py +3680 -0
- h2integrate/to_organize/hopp_tools_steel_EPR_12oct2023.py +3758 -0
- h2integrate/to_organize/hydrogen_steel_pipe_cost_functions.py +231 -0
- h2integrate/to_organize/inputs_py.py +223 -0
- h2integrate/to_organize/pipelineASME.py +314 -0
- h2integrate/to_organize/plot_battery.py +145 -0
- h2integrate/to_organize/plot_power_to_load.py +154 -0
- h2integrate/to_organize/plot_reopt_results.py +168 -0
- h2integrate/to_organize/plot_results.py +315 -0
- h2integrate/to_organize/plot_shortfall_curtailment.py +99 -0
- h2integrate/to_organize/probably_to_project/__init__.py +0 -0
- h2integrate/to_organize/probably_to_project/landbased_nationwide_LCOH.py +548 -0
- h2integrate/to_organize/probably_to_project/osw-h2.py +21 -0
- h2integrate/to_organize/probably_to_project/osw_h2_LCOH.py +720 -0
- h2integrate/to_organize/probably_to_project/run_generation_only.py +291 -0
- h2integrate/to_organize/probably_to_project/steel_model.py +861 -0
- h2integrate/to_organize/run_RODeO.py +515 -0
- h2integrate/to_organize/run_profast_for_ammonia.py +441 -0
- h2integrate/to_organize/run_profast_for_h2_transmission.py +284 -0
- h2integrate/to_organize/run_profast_for_hydrogen.py +1064 -0
- h2integrate/to_organize/run_profast_for_steel.py +670 -0
- h2integrate/to_organize/run_reopt.py +293 -0
- h2integrate/tools/__init__.py +0 -0
- h2integrate/tools/eco/__init__.py +5 -0
- h2integrate/tools/eco/electrolysis.py +583 -0
- h2integrate/tools/eco/finance.py +1834 -0
- h2integrate/tools/eco/hopp_mgmt.py +198 -0
- h2integrate/tools/eco/hydrogen_mgmt.py +612 -0
- h2integrate/tools/eco/utilities.py +3679 -0
- h2integrate/tools/h2integrate_sim_file_utils.py +260 -0
- h2integrate/tools/inflation/cepci.csv +29 -0
- h2integrate/tools/inflation/cpi.csv +16 -0
- h2integrate/tools/inflation/inflate.py +26 -0
- h2integrate/tools/optimization/__init__.py +0 -0
- h2integrate/tools/optimization/fileIO.py +112 -0
- h2integrate/tools/optimization/gc_PoseOptimization.py +662 -0
- h2integrate/tools/optimization/gc_run_h2integrate.py +238 -0
- h2integrate/tools/optimization/mpi_tools.py +149 -0
- h2integrate/tools/optimization/openmdao.py +463 -0
- h2integrate/tools/plant_sizing_estimation.py +83 -0
- h2integrate/tools/plot.py +250 -0
- h2integrate/tools/profast_reverse_tools.py +122 -0
- h2integrate/tools/profast_tools.py +263 -0
- h2integrate-0.2.dist-info/METADATA +361 -0
- h2integrate-0.2.dist-info/RECORD +164 -0
- h2integrate-0.2.dist-info/WHEEL +5 -0
- h2integrate-0.2.dist-info/licenses/LICENSE +31 -0
- h2integrate-0.2.dist-info/top_level.txt +1 -0
h2integrate/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2"
|
|
File without changes
|