S
by SigmaDimensions on 4 Jun 2023, edited 25 Apr 2024
#
+20 votes
Hey Hey !
I'm back.. in ze Studio ?, and I'm recording a free course titled BlenderBIM 4 Beginners
Here are the sections we'll cover:
? 1 - BlenderBIM Explore
?️ 2 - BlenderBIM Modeling
? 3 - BlenderBIM Construction Scheduling
? 4 - BlenderBIM Costing
? 5 - BlenderBIM Drawings
The first section is now available on youtube!
https://youtube.com/playlist?list=PLbFY94gzUJhGXh9tEZIuq-a8BSWddSPz2 !
Files used:
A
by Ace on 6 Jun 2023
#
Your Videos are jammed packed with information!
S
by SigmaDimensions on 8 Jun 2023
#
+4 votes
@Ace said:
Your Videos are jammed packed with information!
Cheers Ifc Architect ! Imma be watching your videos and attempt to avoid duplication :D hopefully with your architectural background and my background in engineering & construction, we can create much needed information for new comers!
??Let's demonstrate how the AEC industry is creating its own tools !
A
by Ace on 8 Jun 2023
#
+2 votes
Likewise! I think don't stress about duplication we both lean towards different things! and sometimes its cool to see people tackle the same thing in different ways!
5
by 50n1c on 21 Apr 2024
#
I am having error opening your house.ifc sample in blender 4.1, the file is not showing up, what went wrong?
T
by theoryshaw on 21 Apr 2024
#
not sure, but this is the error...
https://gist.github.com/theoryshaw/5cb6924f725c419faf9fc08d40b3dab6
A
by Andrej730 on 22 Apr 2024
#
I've patched it and removed broken IfcRelNests
entities that were causing it to fail.
import ifcopenshell
from pathlib import Path
path = r"C:\house.ifc"
path = Path(path)
ifc_file = ifcopenshell.open(path)
for nests in ifc_file.by_type("IfcRelNests"):
if nests.RelatingObject:
continue
print(nests)
ifc_file.remove(nests)
ifc_file.write(path.with_stem(path.stem + "_patched"))
#46545=IfcRelNests('2DwLkReL175PxzF3o$dnub',$,$,$,$,())
#144254=IfcRelNests('3hUKb95rf63vI2xozo_Pd2',$,$,$,$,())
#147664=IfcRelNests('2u0nlmxKv6f9gCfi9yjr69',$,$,$,$,())
...
5
by 50n1c on 25 Apr 2024
#
Big thanks to you, naw i can start my lesson in BlenderBim