yorikvanhavre / BIM_Workbench

A BIM Workbench for FreeCAD
359 stars 77 forks source link

Phasing system #9

Open yorikvanhavre opened 6 years ago

yorikvanhavre commented 6 years ago

Allow to define phases and attribute these phases to BIM objects. Need to see how to save/retrieve this to/from IFC

yorikvanhavre commented 2 years ago

IFC support

Phasing is done with:

IfcWorkSchedule
    | --> IfcTask (name, start date, end date)
              | --> IfcRelAssignsProduct(task,product)

Idea 1: Phases are stored in Document.Meta as a dict of lists with Name, StartDate and EndDate

in Arch:

in BIM:

Idea 2 (preferred): Phases are real tree objects, like layers.

in Arch:

in BIM:

yorikvanhavre commented 2 years ago

ifc_scheduling