├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── pull_request_template.md ├── .gitignore ├── GrasshopperExamples ├── FeatureDescription │ └── Solar │ │ ├── Hive_PhotovoltaicEnergySystem.gh │ │ ├── Hive_PhotovoltaicTimeResolvedEnergySystem.gh │ │ ├── Hive_SolarOrientationFactor.gh │ │ ├── Hive_SolarPerformanceRatioReader.gh │ │ ├── Hive_SolarPotentialsUnobstructed.gh │ │ ├── Hive_SolarThermalEnergySystem.gh │ │ ├── Hive_SolarThermalTimeResolvedEnergySystem.gh │ │ └── Hive_SummarizePVElectricity Yield.gh ├── Templates │ ├── GhPython_HeatingDemand.gh │ ├── HIVE_Geneva.epw │ ├── HIVE_Helsinki.epw │ ├── HIVE_Zurich.epw │ ├── Hive_FullTemplate.gh │ ├── Hive_FullTemplate_Parametric.gh │ ├── Hive_Solar_Unobstructed.gh │ ├── Hive_TreePrototype.gh │ └── README.md └── Testing │ ├── Core_Conversion_Emitter.gh │ ├── Core_DemandHourly.gh │ ├── Hive_BuildingGeometries.gh │ ├── Hive_EnvironmentAndEpwReader.gh │ ├── Hive_Form_Building.gh │ ├── Hive_Form_EnergySystems.gh │ ├── Hive_MainDistributor.gh │ ├── Hive_ParametricInputs.gh │ ├── Hive_Results.gh │ ├── README.md │ ├── Solar_Unobstructed_HiveCore.gh │ └── Tree_Feature │ ├── Hive_FullTemplate_with_tree_feature.gh │ ├── tree_schedules.csv │ └── tree_schedules.json ├── LICENSE ├── README.md ├── docs ├── Makefile ├── Untitled Diagram.drawio ├── conf.py ├── development-environment.rst ├── energysystems.gv ├── energysystems.pdf ├── index.rst └── make.bat ├── repository_files ├── 00_Hive_Architecture.jpg ├── HiveIOGUI.png └── Hive_Logo_medium.jpg ├── setup ├── GHSolar.gha ├── Hive.ProvingGround.Conduit.gha ├── ProvingGround.Conduit.gha ├── README.md ├── Setup_Hive.exe ├── SolarModel.dll ├── build.cmd ├── hive.nsi └── requirements.txt ├── src ├── Graphics │ ├── Illustrator │ │ ├── Hiveicons.ai │ │ └── schneeflocken.png │ ├── PNG │ │ ├── IOCore_DistConduit.png │ │ ├── IOCore_DistEmitter.png │ │ ├── IOCore_DistSIAroom.png │ │ ├── IOCore_DistSolarsim.png │ │ ├── IOCore_Distconvtech.png │ │ ├── IOCore_Distenv.png │ │ ├── IOCore_Distsolartech.png │ │ ├── IOCore_Merger_Gasboiler.png │ │ ├── IOCore_Mergerchiller.png │ │ ├── IOCore_Mergercombinedheatpower.png │ │ ├── IOCore_Mergercoolingexchanger.png │ │ ├── IOCore_Mergerelectricalstation.png │ │ ├── IOCore_Mergerheatpump.png │ │ ├── IOCore_Mergersolartech.png │ │ ├── IO_Building.png │ │ ├── IO_CoreDistributor.png │ │ ├── IO_CoreMerger.png │ │ ├── IO_Energysytems.png │ │ ├── IO_Environment.png │ │ ├── IO_Para_InputSIAroom.png │ │ ├── IO_Para_InputSolarTech.png │ │ ├── IO_Para_Inputen.png │ │ ├── IO_Para_Inputenergyemitter.png │ │ ├── IO_Para_Inputenvpot.png │ │ ├── demand_ListBuildingtype_ex.png │ │ ├── demand_ListBuildingtype_ideal.png │ │ ├── demand_ListBuildingtype_standard.png │ │ ├── demand_SIAroomcreater.png │ │ ├── demand_SIAroomreader.png │ │ ├── demand_adaptivecomfort.png │ │ ├── demand_energydemand.png │ │ ├── energysystems_boiler.png │ │ ├── energysystems_boiler_timeresult.png │ │ ├── energysystems_chiller.png │ │ ├── energysystems_chiller_timeresult.png │ │ ├── energysystems_combined.png │ │ ├── energysystems_combined_timeresult.png │ │ ├── energysystems_heatpump_COP.png │ │ ├── energysystems_heatpump_airsource.png │ │ ├── energysystems_heatpump_airsource_timeresult.png │ │ ├── epw_reader.png │ │ ├── solar_AverageTimeSeries.png │ │ ├── solar_ListPerformanceRatio.png │ │ ├── solar_OrientationFactor.png │ │ ├── solar_PV.png │ │ ├── solar_PVtimeresult.png │ │ ├── solar_PerformanceRatio.png │ │ ├── solar_Solarthermaltimeresult.png │ │ ├── solar_SumTimeSeries.png │ │ ├── solar_potentialsunobs.png │ │ └── solar_solarthermal.png │ └── __MACOSX │ │ ├── Illustrator │ │ ├── ._Hiveicons.ai │ │ └── ._schneeflocken.png │ │ └── PNG │ │ ├── ._IOCore_DistSIAroom.png │ │ ├── ._IOCore_DistSolarsim.png │ │ ├── ._IOCore_Distconvtech.png │ │ ├── ._IOCore_Distenv.png │ │ ├── ._IOCore_Distsolartech.png │ │ ├── ._IOCore_Merger_Gasboiler.png │ │ ├── ._IOCore_Mergerchiller.png │ │ ├── ._IOCore_Mergercombinedheatpower.png │ │ ├── ._IOCore_Mergercoolingexchanger.png │ │ ├── ._IOCore_Mergerelectricalstation.png │ │ ├── ._IOCore_Mergerheatpump.png │ │ ├── ._IOCore_Mergersolartech.png │ │ ├── ._IO_Building.png │ │ ├── ._IO_CoreDistributor.png │ │ ├── ._IO_CoreMerger.png │ │ ├── ._IO_Energysytems.png │ │ ├── ._IO_Environment.png │ │ ├── ._IO_Para_InputSIAroom.png │ │ ├── ._IO_Para_InputSolarTech.png │ │ ├── ._IO_Para_Inputen.png │ │ ├── ._IO_Para_Inputenergyemitter.png │ │ ├── ._IO_Para_Inputenvpot.png │ │ ├── ._demand_ListBuildingtype_ex.png │ │ ├── ._demand_ListBuildingtype_ideal.png │ │ ├── ._demand_ListBuildingtype_standard.png │ │ ├── ._demand_SIAroomcreater.png │ │ ├── ._demand_SIAroomreader.png │ │ ├── ._demand_adaptivecomfort.png │ │ ├── ._demand_energydemand.png │ │ ├── ._energysystems_boiler.png │ │ ├── ._energysystems_boiler_timeresult.png │ │ ├── ._energysystems_chiller.png │ │ ├── ._energysystems_chiller_timeresult.png │ │ ├── ._energysystems_combined.png │ │ ├── ._energysystems_combined_timeresult.png │ │ ├── ._energysystems_heatpump_COP.png │ │ ├── ._energysystems_heatpump_airsource.png │ │ ├── ._energysystems_heatpump_airsource_timeresult.png │ │ ├── ._epw_reader.png │ │ ├── ._solar_AverageTimeSeries.png │ │ ├── ._solar_ListPerformanceRatio.png │ │ ├── ._solar_OrientationFactor.png │ │ ├── ._solar_PV.png │ │ ├── ._solar_PVtimeresult.png │ │ ├── ._solar_PerformanceRatio.png │ │ ├── ._solar_Solarthermaltimeresult.png │ │ ├── ._solar_SumTimeSeries.png │ │ ├── ._solar_potentialsunobs.png │ │ └── ._solar_solarthermal.png ├── Hive.IO │ ├── Hive.IO.sln │ ├── Hive.IO.sln.DotSettings │ ├── Hive.IO │ │ ├── Building │ │ │ ├── Building.cs │ │ │ ├── Components.cs │ │ │ ├── Construction.cs │ │ │ ├── ConstructionAssembly.cs │ │ │ ├── Material.cs │ │ │ ├── Sia2024Record.cs │ │ │ ├── Sia2024Schedules.cs │ │ │ ├── Sia380ConstructionRecord.cs │ │ │ ├── Zone.cs │ │ │ ├── compile_sia2024_json.py │ │ │ ├── generate_sia2024_schedules_json.py │ │ │ ├── requirements.txt │ │ │ ├── sia2024_room_data.json │ │ │ ├── sia2024_schedules.json │ │ │ └── sia380_constructions.json │ │ ├── Core │ │ │ ├── AdaptiveComfort.cs │ │ │ └── Sia380.cs │ │ ├── EnergySystems │ │ │ ├── Carrier.cs │ │ │ ├── CombustionTech.cs │ │ │ ├── ConversionTech.cs │ │ │ ├── Emitter.cs │ │ │ ├── HeatPump.cs │ │ │ ├── Lighting.cs │ │ │ ├── Storage.cs │ │ │ ├── SurfaceBasedTech.cs │ │ │ ├── Ventilation.cs │ │ │ ├── compile_surface_tech_json.py │ │ │ ├── conversion_technology_defaults.json │ │ │ ├── emitter_defaults.json │ │ │ └── surface_tech_module_types.json │ │ ├── Environment │ │ │ ├── Environment.cs │ │ │ └── Epw.cs │ │ ├── Forms │ │ │ ├── BuildingInputForm.Designer.cs │ │ │ ├── BuildingInputForm.cs │ │ │ ├── BuildingInputForm.resx │ │ │ ├── BuildingInputState.cs │ │ │ ├── Controls │ │ │ │ ├── ChillerProperties.Designer.cs │ │ │ │ ├── ChillerProperties.cs │ │ │ │ ├── ChillerProperties.resx │ │ │ │ ├── ChpProperties.Designer.cs │ │ │ │ ├── ChpProperties.cs │ │ │ │ ├── ChpProperties.resx │ │ │ │ ├── ConversionTechPropertiesBase.Designer.cs │ │ │ │ ├── ConversionTechPropertiesBase.cs │ │ │ │ ├── ConversionTechPropertiesBase.resx │ │ │ │ ├── EmitterProperties.Designer.cs │ │ │ │ ├── EmitterProperties.cs │ │ │ │ ├── EmitterProperties.resx │ │ │ │ ├── GasBoilerProperties.Designer.cs │ │ │ │ ├── GasBoilerProperties.cs │ │ │ │ ├── GasBoilerProperties.resx │ │ │ │ ├── HeatExchanger.Designer.cs │ │ │ │ ├── HeatExchangerProperties.Designer.cs │ │ │ │ ├── HeatExchangerProperties.cs │ │ │ │ ├── HeatExchangerProperties.resx │ │ │ │ ├── SurfaceTechnologyProperties.Designer.cs │ │ │ │ ├── SurfaceTechnologyProperties.cs │ │ │ │ └── SurfaceTechnologyProperties.resx │ │ │ ├── ConversionTechPropertiesViewModel.cs │ │ │ ├── EmitterPropertiesViewModel.cs │ │ │ ├── EnergySystemsInputForm.Designer.cs │ │ │ ├── EnergySystemsInputForm.cs │ │ │ ├── EnergySystemsInputForm.resx │ │ │ ├── EnergySystemsInputViewModel.cs │ │ │ ├── ViewModelBase.cs │ │ │ ├── VisualizerPlotProperties.Designer.cs │ │ │ ├── VisualizerPlotProperties.cs │ │ │ └── VisualizerPlotProperties.resx │ │ ├── GhCore │ │ │ ├── GhAdaptiveComfort.cs │ │ │ ├── GhSIA2024RoomReader.cs │ │ │ └── GhSIA380.cs │ │ ├── GhDistributors │ │ │ ├── GhDist3DLossesGains.cs │ │ │ ├── GhDistConduit.cs │ │ │ ├── GhDistConversionTech.cs │ │ │ ├── GhDistEmitter.cs │ │ │ ├── GhDistEnvironment.cs │ │ │ ├── GhDistEpw.cs │ │ │ ├── GhDistSIA.cs │ │ │ ├── GhDistSolarSimulation.cs │ │ │ ├── GhDistSolarTech.cs │ │ │ └── GhMainDistributor.cs │ │ ├── GhEnergySystems │ │ │ ├── GhASHPTimeResolved.cs │ │ │ ├── GhBoilerSimple.cs │ │ │ ├── GhBoilerTimeResolved.cs │ │ │ ├── GhChillerSimple.cs │ │ │ ├── GhChillerTimeResolved.cs │ │ │ ├── GhChpSimple.cs │ │ │ ├── GhChpTimeResolved.cs │ │ │ ├── GhHeatpumpCOP.cs │ │ │ └── GhHeatpumpSimple.cs │ │ ├── GhInputOutput │ │ │ ├── Gh3DLossesGainsVisualizer.cs │ │ │ ├── GhBuilding.cs │ │ │ ├── GhEnergySystem.cs │ │ │ ├── GhEnvironment.cs │ │ │ ├── GhResultsCreator.cs │ │ │ ├── GhResultsExposer.cs │ │ │ ├── GhResultsExposerPreDefined.cs │ │ │ ├── GhResultsParameter.cs │ │ │ ├── GhVisualizer.cs │ │ │ └── GhVisualizerAttributes.cs │ │ ├── GhMergers │ │ │ ├── GhCHP.cs │ │ │ ├── GhChiller.cs │ │ │ ├── GhCoolingExchanger.cs │ │ │ ├── GhGasBoiler.cs │ │ │ ├── GhHeatExchanger.cs │ │ │ ├── GhHeatPump.cs │ │ │ ├── GhPurchasedElectricity.cs │ │ │ └── GhSolarTech.cs │ │ ├── GhParametricInputs │ │ │ ├── GhConversionTech.cs │ │ │ ├── GhEmitter.cs │ │ │ ├── GhEnergyPotentials.cs │ │ │ ├── GhSIARoom.cs │ │ │ └── GhSolarSystems.cs │ │ ├── GhSolar │ │ │ ├── GhOrientationFactor.cs │ │ │ ├── GhPVNoct.cs │ │ │ ├── GhPVSimple.cs │ │ │ ├── GhSTSimple.cs │ │ │ ├── GhSTTimeResolved.cs │ │ │ ├── GhSolarUnobstructed.cs │ │ │ ├── GhSumOverTimePeriod.cs │ │ │ ├── GhTreeGenerator.cs │ │ │ ├── GhTreeSchedule.cs │ │ │ ├── compile_tree_schedules.py │ │ │ └── tree_schedules.json │ │ ├── GhValueLists │ │ │ ├── GhListResults.cs │ │ │ ├── GhPerformanceRatioList.cs │ │ │ ├── GhSia2024RoomList_Standard.cs │ │ │ ├── SIA2024_rooms_data.json │ │ │ ├── compile_performance_ratios_json.py │ │ │ └── performance_ratios.json │ │ ├── Hive.IO.csproj │ │ ├── Plots │ │ │ ├── AmrPlotBase.cs │ │ │ ├── AmrPlotConstants.cs │ │ │ ├── AmrPlotDataAdaptor.cs │ │ │ ├── AmrPlotStyle.cs │ │ │ ├── DemandMonthlyNormalizedPlot.cs │ │ │ ├── DemandMonthlyPlot.cs │ │ │ ├── DrawingExtensions.cs │ │ │ ├── EnergyBalancePlot.cs │ │ │ ├── IVisualizerPlot.cs │ │ │ ├── KpiPlot.cs │ │ │ ├── LifetimeAmrPlot.cs │ │ │ ├── MenuButton.cs │ │ │ ├── MenuButtonPanel.cs │ │ │ ├── MonthlyAmrPlot.cs │ │ │ ├── OxyPlotBase.cs │ │ │ ├── PlotSelector.cs │ │ │ ├── SolarGainsPerWindowPlot.cs │ │ │ ├── VisualizerToolTip.cs │ │ │ └── YearlyAmrPlot.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Resources │ │ │ ├── 201008_SIA2024_Raumdaten_Bestand.csv │ │ │ ├── 201008_SIA2024_Raumdaten_Standardwert.csv │ │ │ ├── 201008_SIA2024_Raumdaten_Zielwert.csv │ │ │ ├── EnergySystems │ │ │ │ ├── CdTe.jpg │ │ │ │ ├── asi.jpg │ │ │ │ ├── asi_grey_panel.jpg │ │ │ │ ├── cigs.jpeg │ │ │ │ ├── cigs_integrated.jpg │ │ │ │ ├── flat_plate.jpg │ │ │ │ ├── flexible_cigs.png │ │ │ │ ├── hjt.jpg │ │ │ │ ├── lof_golden.jpg │ │ │ │ ├── lof_green.jpg │ │ │ │ ├── lof_lavender.jpg │ │ │ │ ├── lof_red.jpg │ │ │ │ ├── lof_steel.jpg │ │ │ │ ├── lof_terracotta.jpg │ │ │ │ ├── mono_facade.png │ │ │ │ ├── mono_facade_blue.png │ │ │ │ ├── mono_roof.png │ │ │ │ ├── monocrystalline.png │ │ │ │ ├── polycrystalline.png │ │ │ │ ├── public_domain │ │ │ │ │ ├── hive_cigs.png │ │ │ │ │ ├── hive_cigs.psd │ │ │ │ │ ├── hive_grey_thin_film.png │ │ │ │ │ ├── hive_grey_thin_film.psd │ │ │ │ │ ├── hive_monocrystalline.png │ │ │ │ │ ├── hive_monocrystalline.psd │ │ │ │ │ ├── hive_monocrystalline_white.png │ │ │ │ │ ├── hive_polycrystalline.png │ │ │ │ │ ├── hive_polycrystalline.psd │ │ │ │ │ ├── hive_polycrystalline_brown.png │ │ │ │ │ ├── hive_polycrystalline_green.png │ │ │ │ │ ├── hive_polycrystalline_lavender.png │ │ │ │ │ ├── hive_polycrystalline_red.png │ │ │ │ │ ├── hive_polycrystalline_steel.png │ │ │ │ │ ├── hive_polycrystalline_terracotta.png │ │ │ │ │ └── hive_vacuum_tube.jpg │ │ │ │ ├── solaxess_white.png │ │ │ │ └── vacuum_tube.jpg │ │ │ ├── EnergySystems_Chiller_Simple.bmp │ │ │ ├── IOCore_DistConduit.png │ │ │ ├── Icons │ │ │ │ ├── Core_Solar_Potentials_Unobstructed.png │ │ │ │ ├── Demand_AdaptiveComfort.png │ │ │ │ ├── Demand_SIA380.png │ │ │ │ ├── EnergySystems_Boiler_Simple.png │ │ │ │ ├── EnergySystems_Boiler_TimeResult.png │ │ │ │ ├── EnergySystems_Combined.png │ │ │ │ ├── EnergySystems_Combined_TimeResult.png │ │ │ │ ├── Hive_Logo.png │ │ │ │ ├── IOCore_DistEmitter.png │ │ │ │ ├── IOCore_DistSIAroom.png │ │ │ │ ├── IOCore_DistSolarsim.png │ │ │ │ ├── IOCore_Distconvtech.png │ │ │ │ ├── IOCore_Distenergysystems.png │ │ │ │ ├── IOCore_Distenv.png │ │ │ │ ├── IOCore_Distsolartech.png │ │ │ │ ├── IOCore_Merger_Gasboiler.png │ │ │ │ ├── IOCore_Mergerchiller.png │ │ │ │ ├── IOCore_Mergercombinedheatpower.png │ │ │ │ ├── IOCore_Mergercoolingexchanger.png │ │ │ │ ├── IOCore_Mergerelectricalstation.png │ │ │ │ ├── IOCore_Mergerheatpump.png │ │ │ │ ├── IOCore_Mergersolartech.png │ │ │ │ ├── IO_Building.png │ │ │ │ ├── IO_CoreDistributor.png │ │ │ │ ├── IO_CoreMerger.png │ │ │ │ ├── IO_Energysytems.png │ │ │ │ ├── IO_Environment.png │ │ │ │ ├── IO_Para_InputSIAroom.png │ │ │ │ ├── IO_Para_InputSolarTech.png │ │ │ │ ├── IO_Para_Inputen.png │ │ │ │ ├── IO_Para_Inputenergyemitter.png │ │ │ │ ├── IO_Para_Inputenvpot.png │ │ │ │ ├── IO_Results_Param.png │ │ │ │ ├── IO_Visualizer.png │ │ │ │ ├── Icons_Hive.xar │ │ │ │ └── Weather_EPW_reader.png │ │ │ ├── Sources.docx │ │ │ ├── Sources.md │ │ │ ├── bipv_efficiency.csv │ │ │ ├── de_icon.png │ │ │ ├── demand_SIAroomreader.png │ │ │ ├── en_icon.png │ │ │ ├── energysystems_chiller.png │ │ │ ├── energysystems_chiller_timeresult.png │ │ │ ├── energysystems_heatpump_COP.png │ │ │ ├── energysystems_heatpump_airsource.png │ │ │ ├── energysystems_heatpump_airsource_timeresult.png │ │ │ ├── gc_efficiency.csv │ │ │ ├── performance_ratio.csv │ │ │ ├── pv_efficiency.csv │ │ │ ├── pvt_efficiency.csv │ │ │ ├── sia2024_schedules.yaml │ │ │ ├── signal-2023-04-11-213625_002 (Benutzerdefiniert).png │ │ │ ├── signal-2023-04-11-221004_002 (Benutzerdefiniert).png │ │ │ ├── signal-2023-04-11-230143_002 (Benutzerdefiniert).png │ │ │ ├── signal-2023-04-11-230325_002 (Benutzerdefiniert).png │ │ │ ├── solar_OrientationFactor.png │ │ │ ├── solar_PV.png │ │ │ ├── solar_PVtimeresult.png │ │ │ ├── solar_PerformanceRatio.png │ │ │ ├── solar_Solarthermaltimeresult.png │ │ │ ├── solar_SumTimeSeries.png │ │ │ ├── solar_solarthermal.png │ │ │ ├── st_efficiency.csv │ │ │ └── tree_schedules.csv │ │ ├── Results │ │ │ ├── Results.cs │ │ │ ├── ResultsExposeForGhListAttribute.cs │ │ │ └── ResultsPlotting.cs │ │ ├── Schemas │ │ │ └── sia2024_schedules_schema.yaml │ │ ├── Util │ │ │ ├── HiveCategoryIcon.cs │ │ │ ├── HiveIOInfo.cs │ │ │ ├── JsonResource.cs │ │ │ └── Misc.cs │ │ └── packages.config │ ├── TestVisualizer │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── TestVisualizer.csproj │ │ └── packages.config │ └── UnitTests │ │ ├── Core │ │ ├── TestDataSIA380.json │ │ ├── TestSIA380.cs │ │ └── results.json │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TestConversionTechProperties.cs │ │ ├── TestSerializingResults.cs │ │ ├── TestSia2024Record.cs │ │ ├── UnitTests.csproj │ │ └── packages.config ├── README.md └── __init__.py └── tests ├── BombyxComparison ├── Validation & Comparison.3dm └── Validation & Comparison.gh ├── Hive.Core ├── __init__.py └── sia380 │ ├── __init__.py │ ├── results.json │ ├── sia380_test.py │ └── testdata.json ├── README.md └── __init__.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/.gitignore -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_PhotovoltaicEnergySystem.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_PhotovoltaicEnergySystem.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_PhotovoltaicTimeResolvedEnergySystem.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_PhotovoltaicTimeResolvedEnergySystem.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SolarOrientationFactor.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SolarOrientationFactor.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SolarPerformanceRatioReader.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SolarPerformanceRatioReader.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SolarPotentialsUnobstructed.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SolarPotentialsUnobstructed.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SolarThermalEnergySystem.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SolarThermalEnergySystem.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SolarThermalTimeResolvedEnergySystem.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SolarThermalTimeResolvedEnergySystem.gh -------------------------------------------------------------------------------- /GrasshopperExamples/FeatureDescription/Solar/Hive_SummarizePVElectricity Yield.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/FeatureDescription/Solar/Hive_SummarizePVElectricity Yield.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/GhPython_HeatingDemand.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/GhPython_HeatingDemand.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/HIVE_Geneva.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/HIVE_Geneva.epw -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/HIVE_Helsinki.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/HIVE_Helsinki.epw -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/HIVE_Zurich.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/HIVE_Zurich.epw -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/Hive_FullTemplate.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/Hive_FullTemplate.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/Hive_FullTemplate_Parametric.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/Hive_FullTemplate_Parametric.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/Hive_Solar_Unobstructed.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/Hive_Solar_Unobstructed.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/Hive_TreePrototype.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/Hive_TreePrototype.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Templates/README.md -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Core_Conversion_Emitter.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Core_Conversion_Emitter.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Core_DemandHourly.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Core_DemandHourly.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_BuildingGeometries.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_BuildingGeometries.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_EnvironmentAndEpwReader.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_EnvironmentAndEpwReader.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_Form_Building.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_Form_Building.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_Form_EnergySystems.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_Form_EnergySystems.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_MainDistributor.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_MainDistributor.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_ParametricInputs.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_ParametricInputs.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Hive_Results.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Hive_Results.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/README.md -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Solar_Unobstructed_HiveCore.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Solar_Unobstructed_HiveCore.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Tree_Feature/Hive_FullTemplate_with_tree_feature.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Tree_Feature/Hive_FullTemplate_with_tree_feature.gh -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Tree_Feature/tree_schedules.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Tree_Feature/tree_schedules.csv -------------------------------------------------------------------------------- /GrasshopperExamples/Testing/Tree_Feature/tree_schedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/GrasshopperExamples/Testing/Tree_Feature/tree_schedules.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Untitled Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/Untitled Diagram.drawio -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development-environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/development-environment.rst -------------------------------------------------------------------------------- /docs/energysystems.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/energysystems.gv -------------------------------------------------------------------------------- /docs/energysystems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/energysystems.pdf -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/docs/make.bat -------------------------------------------------------------------------------- /repository_files/00_Hive_Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/repository_files/00_Hive_Architecture.jpg -------------------------------------------------------------------------------- /repository_files/HiveIOGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/repository_files/HiveIOGUI.png -------------------------------------------------------------------------------- /repository_files/Hive_Logo_medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/repository_files/Hive_Logo_medium.jpg -------------------------------------------------------------------------------- /setup/GHSolar.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/GHSolar.gha -------------------------------------------------------------------------------- /setup/Hive.ProvingGround.Conduit.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/Hive.ProvingGround.Conduit.gha -------------------------------------------------------------------------------- /setup/ProvingGround.Conduit.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/ProvingGround.Conduit.gha -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/README.md -------------------------------------------------------------------------------- /setup/Setup_Hive.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/Setup_Hive.exe -------------------------------------------------------------------------------- /setup/SolarModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/SolarModel.dll -------------------------------------------------------------------------------- /setup/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/build.cmd -------------------------------------------------------------------------------- /setup/hive.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/setup/hive.nsi -------------------------------------------------------------------------------- /setup/requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml 2 | jsonschema -------------------------------------------------------------------------------- /src/Graphics/Illustrator/Hiveicons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/Illustrator/Hiveicons.ai -------------------------------------------------------------------------------- /src/Graphics/Illustrator/schneeflocken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/Illustrator/schneeflocken.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_DistConduit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_DistConduit.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_DistEmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_DistEmitter.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_DistSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_DistSIAroom.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_DistSolarsim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_DistSolarsim.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Distconvtech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Distconvtech.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Distenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Distenv.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Distsolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Distsolartech.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Merger_Gasboiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Merger_Gasboiler.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergerchiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergerchiller.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergercombinedheatpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergercombinedheatpower.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergercoolingexchanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergercoolingexchanger.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergerelectricalstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergerelectricalstation.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergerheatpump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergerheatpump.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IOCore_Mergersolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IOCore_Mergersolartech.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Building.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_CoreDistributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_CoreDistributor.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_CoreMerger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_CoreMerger.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Energysytems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Energysytems.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Environment.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Para_InputSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Para_InputSIAroom.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Para_InputSolarTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Para_InputSolarTech.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Para_Inputen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Para_Inputen.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Para_Inputenergyemitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Para_Inputenergyemitter.png -------------------------------------------------------------------------------- /src/Graphics/PNG/IO_Para_Inputenvpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/IO_Para_Inputenvpot.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_ListBuildingtype_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_ListBuildingtype_ex.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_ListBuildingtype_ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_ListBuildingtype_ideal.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_ListBuildingtype_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_ListBuildingtype_standard.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_SIAroomcreater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_SIAroomcreater.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_SIAroomreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_SIAroomreader.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_adaptivecomfort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_adaptivecomfort.png -------------------------------------------------------------------------------- /src/Graphics/PNG/demand_energydemand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/demand_energydemand.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_boiler.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_boiler_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_boiler_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_chiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_chiller.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_chiller_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_chiller_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_combined.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_combined_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_combined_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_heatpump_COP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_heatpump_COP.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_heatpump_airsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_heatpump_airsource.png -------------------------------------------------------------------------------- /src/Graphics/PNG/energysystems_heatpump_airsource_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/energysystems_heatpump_airsource_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/epw_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/epw_reader.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_AverageTimeSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_AverageTimeSeries.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_ListPerformanceRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_ListPerformanceRatio.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_OrientationFactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_OrientationFactor.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_PV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_PV.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_PVtimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_PVtimeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_PerformanceRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_PerformanceRatio.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_Solarthermaltimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_Solarthermaltimeresult.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_SumTimeSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_SumTimeSeries.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_potentialsunobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_potentialsunobs.png -------------------------------------------------------------------------------- /src/Graphics/PNG/solar_solarthermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/PNG/solar_solarthermal.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/Illustrator/._Hiveicons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/Illustrator/._Hiveicons.ai -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/Illustrator/._schneeflocken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/Illustrator/._schneeflocken.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_DistSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_DistSIAroom.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_DistSolarsim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_DistSolarsim.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Distconvtech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Distconvtech.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Distenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Distenv.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Distsolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Distsolartech.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Merger_Gasboiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Merger_Gasboiler.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergerchiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergerchiller.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergercombinedheatpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergercombinedheatpower.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergercoolingexchanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergercoolingexchanger.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergerelectricalstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergerelectricalstation.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergerheatpump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergerheatpump.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IOCore_Mergersolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IOCore_Mergersolartech.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Building.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_CoreDistributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_CoreDistributor.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_CoreMerger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_CoreMerger.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Energysytems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Energysytems.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Environment.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Para_InputSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Para_InputSIAroom.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Para_InputSolarTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Para_InputSolarTech.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Para_Inputen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Para_Inputen.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Para_Inputenergyemitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Para_Inputenergyemitter.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._IO_Para_Inputenvpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._IO_Para_Inputenvpot.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_ex.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_ideal.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_ListBuildingtype_standard.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_SIAroomcreater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_SIAroomcreater.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_SIAroomreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_SIAroomreader.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_adaptivecomfort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_adaptivecomfort.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._demand_energydemand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._demand_energydemand.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_boiler.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_boiler_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_boiler_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_chiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_chiller.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_chiller_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_chiller_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_combined.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_combined_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_combined_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_heatpump_COP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_heatpump_COP.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_heatpump_airsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_heatpump_airsource.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._energysystems_heatpump_airsource_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._energysystems_heatpump_airsource_timeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._epw_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._epw_reader.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_AverageTimeSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_AverageTimeSeries.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_ListPerformanceRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_ListPerformanceRatio.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_OrientationFactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_OrientationFactor.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_PV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_PV.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_PVtimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_PVtimeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_PerformanceRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_PerformanceRatio.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_Solarthermaltimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_Solarthermaltimeresult.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_SumTimeSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_SumTimeSeries.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_potentialsunobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_potentialsunobs.png -------------------------------------------------------------------------------- /src/Graphics/__MACOSX/PNG/._solar_solarthermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Graphics/__MACOSX/PNG/._solar_solarthermal.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO.sln -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO.sln.DotSettings -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Building.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Building.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Components.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Construction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Construction.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/ConstructionAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/ConstructionAssembly.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Material.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Sia2024Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Sia2024Record.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Sia2024Schedules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Sia2024Schedules.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Sia380ConstructionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Sia380ConstructionRecord.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/Zone.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/compile_sia2024_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/compile_sia2024_json.py -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/generate_sia2024_schedules_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/generate_sia2024_schedules_json.py -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml 2 | jsonschema -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/sia2024_room_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/sia2024_room_data.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/sia2024_schedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/sia2024_schedules.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Building/sia380_constructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Building/sia380_constructions.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Core/AdaptiveComfort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Core/AdaptiveComfort.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Core/Sia380.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Core/Sia380.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/Carrier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/Carrier.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/CombustionTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/CombustionTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/ConversionTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/ConversionTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/Emitter.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/HeatPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/HeatPump.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/Lighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/Lighting.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/Storage.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/SurfaceBasedTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/SurfaceBasedTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/Ventilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/Ventilation.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/compile_surface_tech_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/compile_surface_tech_json.py -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/conversion_technology_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/conversion_technology_defaults.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/emitter_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/emitter_defaults.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/EnergySystems/surface_tech_module_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/EnergySystems/surface_tech_module_types.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Environment/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Environment/Environment.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Environment/Epw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Environment/Epw.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/BuildingInputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/BuildingInputForm.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/BuildingInputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/BuildingInputForm.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/BuildingInputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/BuildingInputForm.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/BuildingInputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/BuildingInputState.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChillerProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ChpProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/ConversionTechPropertiesBase.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/EmitterProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/GasBoilerProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/HeatExchanger.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/HeatExchanger.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/HeatExchangerProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/Controls/SurfaceTechnologyProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/ConversionTechPropertiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/ConversionTechPropertiesViewModel.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/EmitterPropertiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/EmitterPropertiesViewModel.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/EnergySystemsInputForm.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/EnergySystemsInputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/EnergySystemsInputViewModel.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/ViewModelBase.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Forms/VisualizerPlotProperties.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhCore/GhAdaptiveComfort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhCore/GhAdaptiveComfort.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhCore/GhSIA2024RoomReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhCore/GhSIA2024RoomReader.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhCore/GhSIA380.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhCore/GhSIA380.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDist3DLossesGains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDist3DLossesGains.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistConduit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistConduit.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistConversionTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistConversionTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistEmitter.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistEnvironment.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistEpw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistEpw.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistSIA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistSIA.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistSolarSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistSolarSimulation.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhDistSolarTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhDistSolarTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhDistributors/GhMainDistributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhDistributors/GhMainDistributor.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhASHPTimeResolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhASHPTimeResolved.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhBoilerSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhBoilerSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhBoilerTimeResolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhBoilerTimeResolved.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhChillerSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhChillerSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhChillerTimeResolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhChillerTimeResolved.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhChpSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhChpSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhChpTimeResolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhChpTimeResolved.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhHeatpumpCOP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhHeatpumpCOP.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhEnergySystems/GhHeatpumpSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhEnergySystems/GhHeatpumpSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/Gh3DLossesGainsVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/Gh3DLossesGainsVisualizer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhBuilding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhBuilding.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhEnergySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhEnergySystem.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhEnvironment.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhResultsCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhResultsCreator.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhResultsExposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhResultsExposer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhResultsExposerPreDefined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhResultsExposerPreDefined.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhResultsParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhResultsParameter.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhVisualizer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhInputOutput/GhVisualizerAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhInputOutput/GhVisualizerAttributes.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhCHP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhCHP.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhChiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhChiller.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhCoolingExchanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhCoolingExchanger.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhGasBoiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhGasBoiler.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhHeatExchanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhHeatExchanger.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhHeatPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhHeatPump.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhPurchasedElectricity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhPurchasedElectricity.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhMergers/GhSolarTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhMergers/GhSolarTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhParametricInputs/GhConversionTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhParametricInputs/GhConversionTech.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhParametricInputs/GhEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhParametricInputs/GhEmitter.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhParametricInputs/GhEnergyPotentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhParametricInputs/GhEnergyPotentials.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhParametricInputs/GhSIARoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhParametricInputs/GhSIARoom.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhParametricInputs/GhSolarSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhParametricInputs/GhSolarSystems.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhOrientationFactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhOrientationFactor.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhPVNoct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhPVNoct.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhPVSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhPVSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhSTSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhSTSimple.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhSTTimeResolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhSTTimeResolved.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhSolarUnobstructed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhSolarUnobstructed.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhSumOverTimePeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhSumOverTimePeriod.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhTreeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhTreeGenerator.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/GhTreeSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/GhTreeSchedule.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/compile_tree_schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/compile_tree_schedules.py -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhSolar/tree_schedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhSolar/tree_schedules.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/GhListResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/GhListResults.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/GhPerformanceRatioList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/GhPerformanceRatioList.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/GhSia2024RoomList_Standard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/GhSia2024RoomList_Standard.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/SIA2024_rooms_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/SIA2024_rooms_data.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/compile_performance_ratios_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/compile_performance_ratios_json.py -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/GhValueLists/performance_ratios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/GhValueLists/performance_ratios.json -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Hive.IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Hive.IO.csproj -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/AmrPlotBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/AmrPlotBase.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/AmrPlotConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/AmrPlotConstants.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/AmrPlotDataAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/AmrPlotDataAdaptor.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/AmrPlotStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/AmrPlotStyle.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/DemandMonthlyNormalizedPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/DemandMonthlyNormalizedPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/DemandMonthlyPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/DemandMonthlyPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/DrawingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/DrawingExtensions.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/EnergyBalancePlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/EnergyBalancePlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/IVisualizerPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/IVisualizerPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/KpiPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/KpiPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/LifetimeAmrPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/LifetimeAmrPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/MenuButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/MenuButton.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/MenuButtonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/MenuButtonPanel.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/MonthlyAmrPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/MonthlyAmrPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/OxyPlotBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/OxyPlotBase.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/PlotSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/PlotSelector.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/SolarGainsPerWindowPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/SolarGainsPerWindowPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/VisualizerToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/VisualizerToolTip.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Plots/YearlyAmrPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Plots/YearlyAmrPlot.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Bestand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Bestand.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Standardwert.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Standardwert.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Zielwert.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/201008_SIA2024_Raumdaten_Zielwert.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/CdTe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/CdTe.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/asi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/asi.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/asi_grey_panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/asi_grey_panel.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/cigs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/cigs.jpeg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/cigs_integrated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/cigs_integrated.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/flat_plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/flat_plate.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/flexible_cigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/flexible_cigs.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/hjt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/hjt.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_golden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_golden.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_green.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_lavender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_lavender.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_red.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_steel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_steel.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_terracotta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/lof_terracotta.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_facade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_facade.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_facade_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_facade_blue.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_roof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/mono_roof.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/monocrystalline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/monocrystalline.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/polycrystalline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/polycrystalline.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_cigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_cigs.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_cigs.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_cigs.psd -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_grey_thin_film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_grey_thin_film.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_grey_thin_film.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_grey_thin_film.psd -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline.psd -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_monocrystalline_white.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline.psd -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_brown.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_green.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_lavender.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_red.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_steel.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_terracotta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_polycrystalline_terracotta.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_vacuum_tube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/public_domain/hive_vacuum_tube.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/solaxess_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/solaxess_white.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems/vacuum_tube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems/vacuum_tube.jpg -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/EnergySystems_Chiller_Simple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/EnergySystems_Chiller_Simple.bmp -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/IOCore_DistConduit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/IOCore_DistConduit.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Core_Solar_Potentials_Unobstructed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Core_Solar_Potentials_Unobstructed.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Demand_AdaptiveComfort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Demand_AdaptiveComfort.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Demand_SIA380.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Demand_SIA380.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Boiler_Simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Boiler_Simple.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Boiler_TimeResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Boiler_TimeResult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Combined.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Combined_TimeResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/EnergySystems_Combined_TimeResult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Hive_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Hive_Logo.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistEmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistEmitter.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistSIAroom.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistSolarsim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_DistSolarsim.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distconvtech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distconvtech.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distenergysystems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distenergysystems.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distenv.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distsolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Distsolartech.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Merger_Gasboiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Merger_Gasboiler.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerchiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerchiller.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergercombinedheatpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergercombinedheatpower.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergercoolingexchanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergercoolingexchanger.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerelectricalstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerelectricalstation.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerheatpump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergerheatpump.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergersolartech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IOCore_Mergersolartech.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Building.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_CoreDistributor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_CoreDistributor.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_CoreMerger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_CoreMerger.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Energysytems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Energysytems.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Environment.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_InputSIAroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_InputSIAroom.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_InputSolarTech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_InputSolarTech.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputen.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputenergyemitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputenergyemitter.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputenvpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Para_Inputenvpot.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Results_Param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Results_Param.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/IO_Visualizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/IO_Visualizer.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Icons_Hive.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Icons_Hive.xar -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Icons/Weather_EPW_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Icons/Weather_EPW_reader.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Sources.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Sources.docx -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/Sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/Sources.md -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/bipv_efficiency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/bipv_efficiency.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/de_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/de_icon.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/demand_SIAroomreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/demand_SIAroomreader.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/en_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/en_icon.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/energysystems_chiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/energysystems_chiller.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/energysystems_chiller_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/energysystems_chiller_timeresult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_COP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_COP.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_airsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_airsource.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_airsource_timeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/energysystems_heatpump_airsource_timeresult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/gc_efficiency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/gc_efficiency.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/performance_ratio.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/performance_ratio.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/pv_efficiency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/pv_efficiency.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/pvt_efficiency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/pvt_efficiency.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/sia2024_schedules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/sia2024_schedules.yaml -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-213625_002 (Benutzerdefiniert).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-213625_002 (Benutzerdefiniert).png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-221004_002 (Benutzerdefiniert).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-221004_002 (Benutzerdefiniert).png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-230143_002 (Benutzerdefiniert).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-230143_002 (Benutzerdefiniert).png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-230325_002 (Benutzerdefiniert).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/signal-2023-04-11-230325_002 (Benutzerdefiniert).png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_OrientationFactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_OrientationFactor.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_PV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_PV.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_PVtimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_PVtimeresult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_PerformanceRatio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_PerformanceRatio.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_Solarthermaltimeresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_Solarthermaltimeresult.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_SumTimeSeries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_SumTimeSeries.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/solar_solarthermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/solar_solarthermal.png -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/st_efficiency.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/st_efficiency.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Resources/tree_schedules.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Resources/tree_schedules.csv -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Results/Results.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Results/Results.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Results/ResultsExposeForGhListAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Results/ResultsExposeForGhListAttribute.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Results/ResultsPlotting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Results/ResultsPlotting.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Schemas/sia2024_schedules_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Schemas/sia2024_schedules_schema.yaml -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Util/HiveCategoryIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Util/HiveCategoryIcon.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Util/HiveIOInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Util/HiveIOInfo.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Util/JsonResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Util/JsonResource.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/Util/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/Util/Misc.cs -------------------------------------------------------------------------------- /src/Hive.IO/Hive.IO/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/Hive.IO/packages.config -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/App.config -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Program.cs -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/TestVisualizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/TestVisualizer.csproj -------------------------------------------------------------------------------- /src/Hive.IO/TestVisualizer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/TestVisualizer/packages.config -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/Core/TestDataSIA380.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/Core/TestDataSIA380.json -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/Core/TestSIA380.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/Core/TestSIA380.cs -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/Core/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/Core/results.json -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/TestConversionTechProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/TestConversionTechProperties.cs -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/TestSerializingResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/TestSerializingResults.cs -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/TestSia2024Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/TestSia2024Record.cs -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /src/Hive.IO/UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/Hive.IO/UnitTests/packages.config -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/src/README.md -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/BombyxComparison/Validation & Comparison.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/BombyxComparison/Validation & Comparison.3dm -------------------------------------------------------------------------------- /tests/BombyxComparison/Validation & Comparison.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/BombyxComparison/Validation & Comparison.gh -------------------------------------------------------------------------------- /tests/Hive.Core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Hive.Core/sia380/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Hive.Core/sia380/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/Hive.Core/sia380/results.json -------------------------------------------------------------------------------- /tests/Hive.Core/sia380/sia380_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/Hive.Core/sia380/sia380_test.py -------------------------------------------------------------------------------- /tests/Hive.Core/sia380/testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/Hive.Core/sia380/testdata.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/architecture-building-systems/hive/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------