ifctrano 0.1.10__tar.gz → 0.1.12__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ifctrano
3
- Version: 0.1.10
3
+ Version: 0.1.12
4
4
  Summary: Package for generating building energy simulation model from IFC
5
5
  Home-page: https://github.com/andoludo/ifctrano
6
6
  License: GPL V3
@@ -36,6 +36,20 @@ ifctrano --help
36
36
  ifctrano verify
37
37
  ```
38
38
 
39
+ # ⚠️ WARNING ⚠️
40
+
41
+ **This package is still under construction and is largely a work in progress.**
42
+ There are still several aspects that need further development, including:
43
+
44
+ - Material and construction extraction
45
+ - Slab and roof boundaries
46
+ - Systems integration
47
+ - Additional validation
48
+ - Bug fixes
49
+ - ...
50
+ -
51
+ Help and contribution are more than appreciated! 🚧
52
+
39
53
  ## Overview
40
54
  ifctrano is yet another **IFC to energy simulation** tool designed to translate **Industry Foundation Classes (IFC)** models into energy simulation models in **Modelica**.
41
55
 
@@ -14,6 +14,20 @@ ifctrano --help
14
14
  ifctrano verify
15
15
  ```
16
16
 
17
+ # ⚠️ WARNING ⚠️
18
+
19
+ **This package is still under construction and is largely a work in progress.**
20
+ There are still several aspects that need further development, including:
21
+
22
+ - Material and construction extraction
23
+ - Slab and roof boundaries
24
+ - Systems integration
25
+ - Additional validation
26
+ - Bug fixes
27
+ - ...
28
+ -
29
+ Help and contribution are more than appreciated! 🚧
30
+
17
31
  ## Overview
18
32
  ifctrano is yet another **IFC to energy simulation** tool designed to translate **Industry Foundation Classes (IFC)** models into energy simulation models in **Modelica**.
19
33
 
@@ -41,7 +41,7 @@ def create(
41
41
  total=None,
42
42
  )
43
43
  building = Building.from_ifc(Path(model))
44
- modelica_model = building.create_model()
44
+ modelica_model = building.create_model(library=library) # type: ignore
45
45
  progress.update(task, completed=True)
46
46
  task = progress.add_task(description="Writing model to file...", total=None)
47
47
  modelica_model_path.write_text(modelica_model)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ifctrano"
3
- version = "0.1.10"
3
+ version = "0.1.12"
4
4
  description = "Package for generating building energy simulation model from IFC"
5
5
  authors = ["Ando Andriamamonjy <andoludovic.andriamamonjy@gmail.com>"]
6
6
  license = "GPL V3"
File without changes
File without changes