ifctrano 0.1.1__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.
- ifctrano/__init__.py +0 -0
- ifctrano/base.py +163 -0
- ifctrano/bounding_box.py +245 -0
- ifctrano/building.py +55 -0
- ifctrano/exceptions.py +10 -0
- ifctrano/main.py +44 -0
- ifctrano/space_boundary.py +164 -0
- ifctrano-0.1.1.dist-info/LICENSE +674 -0
- ifctrano-0.1.1.dist-info/METADATA +61 -0
- ifctrano-0.1.1.dist-info/RECORD +12 -0
- ifctrano-0.1.1.dist-info/WHEEL +4 -0
- ifctrano-0.1.1.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ifctrano
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: Package for generating building energy simulation model from IFC
|
5
|
+
Home-page: https://github.com/andoludo/ifctrano
|
6
|
+
License: GPL V3
|
7
|
+
Keywords: BIM,IFC,energy simulation,modelica,building energy simulation,buildings,ideas
|
8
|
+
Author: Ando Andriamamonjy
|
9
|
+
Author-email: andoludovic.andriamamonjy@gmail.com
|
10
|
+
Requires-Python: >=3.10,<3.13
|
11
|
+
Classifier: License :: Other/Proprietary License
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
15
|
+
Requires-Dist: ifcopenshell (>=0.8.1.post1,<0.9.0)
|
16
|
+
Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
17
|
+
Requires-Dist: shapely (>=2.0.7,<3.0.0)
|
18
|
+
Requires-Dist: trano (>=0.1.48,<0.2.0)
|
19
|
+
Requires-Dist: typer (>=0.12.5,<0.13.0)
|
20
|
+
Project-URL: Repository, https://github.com/andoludo/ifctrano
|
21
|
+
Description-Content-Type: text/markdown
|
22
|
+
|
23
|
+
# ifctrano - IFC to Energy Simulation Tool
|
24
|
+
|
25
|
+
## Overview
|
26
|
+
ifctrano is yet another **IFC to energy simulation** tool designed to translate **Industry Foundation Classes (IFC)** models into energy simulation models in **Modelica**.
|
27
|
+
|
28
|
+
### Key Differentiator
|
29
|
+
Unlike most translation approaches that rely on **space boundaries (IfcRelSpaceBoundary)** (e.g. see [An automated IFC-based workflow for building energy performance simulation with Modelica](https://www.sciencedirect.com/science/article/abs/pii/S0926580517308282)), ifctrano operates **solely on geometrical representation**. This is crucial because **space boundaries are rarely available** in IFC models. Instead, ifctrano requires at least the definition of **IfcSpace** objects to build energy simulation models.
|
30
|
+
|
31
|
+
### Space-Zone Mapping
|
32
|
+
For now, **each space is considered as a single thermal zone**, and the necessary space boundaries are **automatically generated**.
|
33
|
+
|
34
|
+
## Why ifctrano?
|
35
|
+
β
No reliance on **IfcRelSpaceBoundary**
|
36
|
+
|
37
|
+
β
Works with **geometric representation** only
|
38
|
+
|
39
|
+
β
Supports **Modelica-based energy simulation**
|
40
|
+
|
41
|
+
β
**Tested on multiple open-source IFC files**
|
42
|
+
|
43
|
+
|
44
|
+
## Open Source IFC Test Files
|
45
|
+
ifctrano has been tested using open-source IFC files from various repositories:
|
46
|
+
|
47
|
+
- π [BIM Whale IFC Samples](https://github.com/andrewisen/bim-whale-ifc-samples)
|
48
|
+
- ποΈ [IfcSampleFiles](https://github.com/youshengCode/IfcSampleFiles)
|
49
|
+
- π [BIM2Modelica](https://github.com/UdK-VPT/BIM2Modelica/tree/master/IFC/IFC2X3/UdKB_Unit_Test_Cases)
|
50
|
+
- πΈοΈ [Ifc2Graph Test Files](https://github.com/JBjoernskov/Ifc2Graph/tree/main/test_ifc_files)
|
51
|
+
- π [Open Source BIM](https://github.com/opensourceBIM)
|
52
|
+
|
53
|
+
## Installation & Usage
|
54
|
+
(Installation and usage instructions will be provided here, depending on the package distribution method.)
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
---
|
59
|
+
π‘ **ifctrano** aims to make energy simulation model generation from IFC files **simpler, more accessible, and less reliant on incomplete IFC attributes**. π
|
60
|
+
|
61
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
ifctrano/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
ifctrano/base.py,sha256=vwWmzOTnMpE5rmnIti7QeG92Z_rpk-9nIrl7I9Or1cA,4971
|
3
|
+
ifctrano/bounding_box.py,sha256=_cvS6G6RaNKCFIE3gaQO-bQTKOxIvn0xDZ4rKSCL5T4,8390
|
4
|
+
ifctrano/building.py,sha256=0RCxlupyPl7c7d1F-JVL0mjDGpB7MPYVpoDuXFI0AeE,1940
|
5
|
+
ifctrano/exceptions.py,sha256=_kntVIsqEvz3zxtJd8RougQRXEwjF5avarmGB-mig1w,228
|
6
|
+
ifctrano/main.py,sha256=97Uh8JgjoeeeZ3VMP1_STpDH23mOlW2M9oo9gwECLPE,1411
|
7
|
+
ifctrano/space_boundary.py,sha256=PkBiLPT26-Us7emyjqNUjKDL4GWMxfQQnHYOgRhelEI,5175
|
8
|
+
ifctrano-0.1.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
9
|
+
ifctrano-0.1.1.dist-info/METADATA,sha256=OYwwmC64VDyLF1N2W1T4Gys9pDuVGlkVigRsAi-5mv0,2879
|
10
|
+
ifctrano-0.1.1.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
11
|
+
ifctrano-0.1.1.dist-info/entry_points.txt,sha256=lHxD6pcOuPxITBoWjE35s4f6Dy7tzPa48ffuI-ehb2M,43
|
12
|
+
ifctrano-0.1.1.dist-info/RECORD,,
|