OSArch Community

BlenderBIM 4 Beginners - Xplore

  1. S

    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:

  2. A

    Your Videos are jammed packed with information!

  3. S

    @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 !

  4. A

    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. 5

    I am having error opening your house.ifc sample in blender 4.1, the file is not showing up, what went wrong?

  6. T
  7. 5
  8. A

    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',$,$,$,$,())
    
    ...
    
  9. 5

    Big thanks to you, naw i can start my lesson in BlenderBim

Login or Register to reply.