phx 1.49.3__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- PHX/PHPP/README.md +13 -0
- PHX/PHPP/__init__.py +1 -0
- PHX/PHPP/phpp_app.py +823 -0
- PHX/PHPP/phpp_localization/EN_10_3.json +1553 -0
- PHX/PHPP/phpp_localization/EN_10_4A.json +1553 -0
- PHX/PHPP/phpp_localization/EN_10_4IP.json +1553 -0
- PHX/PHPP/phpp_localization/EN_10_6.json +1553 -0
- PHX/PHPP/phpp_localization/EN_9_6A.json +1548 -0
- PHX/PHPP/phpp_localization/EN_9_7IP.json +1548 -0
- PHX/PHPP/phpp_localization/__init__.py +2 -0
- PHX/PHPP/phpp_localization/load.py +50 -0
- PHX/PHPP/phpp_localization/shape_model.py +1109 -0
- PHX/PHPP/phpp_model/__init__.py +0 -0
- PHX/PHPP/phpp_model/areas_data.py +44 -0
- PHX/PHPP/phpp_model/areas_surface.py +218 -0
- PHX/PHPP/phpp_model/areas_thermal_bridges.py +61 -0
- PHX/PHPP/phpp_model/climate_entry.py +161 -0
- PHX/PHPP/phpp_model/component_frame.py +151 -0
- PHX/PHPP/phpp_model/component_glazing.py +64 -0
- PHX/PHPP/phpp_model/component_vent.py +71 -0
- PHX/PHPP/phpp_model/elec_non_res.py +59 -0
- PHX/PHPP/phpp_model/electricity_item.py +364 -0
- PHX/PHPP/phpp_model/hot_water_piping.py +151 -0
- PHX/PHPP/phpp_model/hot_water_tank.py +76 -0
- PHX/PHPP/phpp_model/shading_rows.py +95 -0
- PHX/PHPP/phpp_model/uvalues_constructor.py +110 -0
- PHX/PHPP/phpp_model/vent_ducts.py +0 -0
- PHX/PHPP/phpp_model/vent_space.py +132 -0
- PHX/PHPP/phpp_model/vent_units.py +58 -0
- PHX/PHPP/phpp_model/ventilation_data.py +82 -0
- PHX/PHPP/phpp_model/verification_data.py +63 -0
- PHX/PHPP/phpp_model/version.py +21 -0
- PHX/PHPP/phpp_model/windows_rows.py +106 -0
- PHX/PHPP/sheet_io/__init__.py +24 -0
- PHX/PHPP/sheet_io/io_PER.py +443 -0
- PHX/PHPP/sheet_io/io_addnl_vent.py +392 -0
- PHX/PHPP/sheet_io/io_areas.py +435 -0
- PHX/PHPP/sheet_io/io_climate.py +62 -0
- PHX/PHPP/sheet_io/io_components.py +552 -0
- PHX/PHPP/sheet_io/io_cooling_demand.py +53 -0
- PHX/PHPP/sheet_io/io_cooling_peak_load.py +48 -0
- PHX/PHPP/sheet_io/io_cooling_units.py +141 -0
- PHX/PHPP/sheet_io/io_elec_non_res.py +160 -0
- PHX/PHPP/sheet_io/io_electricity.py +80 -0
- PHX/PHPP/sheet_io/io_exceptions.py +42 -0
- PHX/PHPP/sheet_io/io_heating_demand.py +49 -0
- PHX/PHPP/sheet_io/io_heating_peak_load.py +51 -0
- PHX/PHPP/sheet_io/io_hot_water.py +257 -0
- PHX/PHPP/sheet_io/io_ihg_non_res.py +21 -0
- PHX/PHPP/sheet_io/io_overview.py +135 -0
- PHX/PHPP/sheet_io/io_shading.py +113 -0
- PHX/PHPP/sheet_io/io_solar_dhw.py +63 -0
- PHX/PHPP/sheet_io/io_solar_pv.py +76 -0
- PHX/PHPP/sheet_io/io_u_values.py +359 -0
- PHX/PHPP/sheet_io/io_use_non_res.py +21 -0
- PHX/PHPP/sheet_io/io_variants.py +234 -0
- PHX/PHPP/sheet_io/io_ventilation.py +139 -0
- PHX/PHPP/sheet_io/io_verification.py +144 -0
- PHX/PHPP/sheet_io/io_windows.py +355 -0
- PHX/__init__.py +0 -0
- PHX/_hbjson_to_phpp.sh +22 -0
- PHX/from_HBJSON/README.md +2 -0
- PHX/from_HBJSON/__init__.py +4 -0
- PHX/from_HBJSON/cleanup.py +546 -0
- PHX/from_HBJSON/cleanup_merge_faces.py +232 -0
- PHX/from_HBJSON/create_assemblies.py +471 -0
- PHX/from_HBJSON/create_building.py +385 -0
- PHX/from_HBJSON/create_elec_equip.py +68 -0
- PHX/from_HBJSON/create_foundations.py +57 -0
- PHX/from_HBJSON/create_geometry.py +118 -0
- PHX/from_HBJSON/create_hvac.py +520 -0
- PHX/from_HBJSON/create_project.py +153 -0
- PHX/from_HBJSON/create_rooms.py +149 -0
- PHX/from_HBJSON/create_schedules.py +397 -0
- PHX/from_HBJSON/create_shades.py +108 -0
- PHX/from_HBJSON/create_shw_devices.py +229 -0
- PHX/from_HBJSON/create_variant.py +893 -0
- PHX/from_HBJSON/read_HBJSON_file.py +85 -0
- PHX/from_WUFI_XML/__init__.py +0 -0
- PHX/from_WUFI_XML/phx_converter.py +13 -0
- PHX/from_WUFI_XML/phx_schemas.py +1827 -0
- PHX/from_WUFI_XML/read_WUFI_XML_file.py +115 -0
- PHX/from_WUFI_XML/wufi_file_schema.py +1088 -0
- PHX/from_WUFI_XML/wufi_file_types.py +434 -0
- PHX/hbjson_to_phpp.py +67 -0
- PHX/hbjson_to_wufi_xml.py +251 -0
- PHX/model/README.md +47 -0
- PHX/model/__init__.py +19 -0
- PHX/model/building.py +455 -0
- PHX/model/certification.py +201 -0
- PHX/model/components.py +767 -0
- PHX/model/constructions.py +595 -0
- PHX/model/elec_equip.py +387 -0
- PHX/model/enums/__init__.py +0 -0
- PHX/model/enums/building.py +112 -0
- PHX/model/enums/elec_equip.py +23 -0
- PHX/model/enums/foundations.py +24 -0
- PHX/model/enums/hvac.py +166 -0
- PHX/model/enums/phi_certification_phpp_10.py +47 -0
- PHX/model/enums/phi_certification_phpp_9.py +60 -0
- PHX/model/enums/phius_certification.py +42 -0
- PHX/model/enums/phx_site.py +26 -0
- PHX/model/geometry.py +571 -0
- PHX/model/ground.py +98 -0
- PHX/model/hvac/__init__.py +14 -0
- PHX/model/hvac/_base.py +237 -0
- PHX/model/hvac/_diagram.drawio +51 -0
- PHX/model/hvac/collection.py +698 -0
- PHX/model/hvac/cooling_params.py +132 -0
- PHX/model/hvac/ducting.py +162 -0
- PHX/model/hvac/heat_pumps.py +175 -0
- PHX/model/hvac/heating.py +229 -0
- PHX/model/hvac/piping.py +329 -0
- PHX/model/hvac/renewable_devices.py +144 -0
- PHX/model/hvac/supportive_devices.py +59 -0
- PHX/model/hvac/ventilation.py +278 -0
- PHX/model/hvac/water.py +177 -0
- PHX/model/loads/__init__.py +1 -0
- PHX/model/loads/lighting.py +20 -0
- PHX/model/loads/occupancy.py +20 -0
- PHX/model/loads/ventilation.py +31 -0
- PHX/model/phx_site.py +342 -0
- PHX/model/programs/__init__.py +0 -0
- PHX/model/programs/lighting.py +20 -0
- PHX/model/programs/occupancy.py +20 -0
- PHX/model/programs/ventilation.py +25 -0
- PHX/model/project.py +351 -0
- PHX/model/schedules/__init__.py +0 -0
- PHX/model/schedules/lighting.py +94 -0
- PHX/model/schedules/occupancy.py +91 -0
- PHX/model/schedules/ventilation.py +93 -0
- PHX/model/shades.py +46 -0
- PHX/model/spaces.py +109 -0
- PHX/model/utilization_patterns.py +216 -0
- PHX/run.py +265 -0
- PHX/to_WUFI_XML/README.md +2 -0
- PHX/to_WUFI_XML/__init__.py +8 -0
- PHX/to_WUFI_XML/_bug_fixes.py +104 -0
- PHX/to_WUFI_XML/xml_builder.py +138 -0
- PHX/to_WUFI_XML/xml_converter.py +77 -0
- PHX/to_WUFI_XML/xml_schemas.py +1889 -0
- PHX/to_WUFI_XML/xml_txt_to_file.py +66 -0
- PHX/to_WUFI_XML/xml_writables.py +87 -0
- PHX/xl/__init__.py +1 -0
- PHX/xl/xl_app.py +621 -0
- PHX/xl/xl_data.py +258 -0
- PHX/xl/xl_typing.py +167 -0
- phx-1.49.3.dist-info/LICENSE +674 -0
- phx-1.49.3.dist-info/METADATA +60 -0
- phx-1.49.3.dist-info/RECORD +152 -0
- phx-1.49.3.dist-info/WHEEL +6 -0
- phx-1.49.3.dist-info/top_level.txt +1 -0
PHX/PHPP/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# to_PHPP
|
|
2
|
+
These modules are used to output a PHX model and all relevant building data to a Passive House Planning Package (PHPP) excel document.
|
|
3
|
+
|
|
4
|
+
# Usage:
|
|
5
|
+
1. Ensure that a valid PHPP Excel document is opened before using these export tools.
|
|
6
|
+
2. The modules here will find the 'active' excel document and write to it. To avoid conflicts and errors, it is recommended to close all other excel documents except the PHPP which you would like to write the data to.
|
|
7
|
+
3. These modules will overwrite any existing data in the target PHPP file.
|
|
8
|
+
4. You must already own a copy of the PHPP for this export tool to write to. The PHPP file is not included along with the modules here. These modules only write to the PHPP. If you do not already have a copy of the PHPP, you can find more information here: [link](https://passivehouse.com/04_phpp/04_phpp.htm)
|
|
9
|
+
|
|
10
|
+
# Compatibility:
|
|
11
|
+
|
|
12
|
+
1. Currently, the PHPP exporter only supports Windows OS. Mac OS support is in development.
|
|
13
|
+
2. The current exporter is compatible with PHPP v9.6a. New formats will be supported once they are released.
|
PHX/PHPP/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""PHPP Application Interface."""
|