1 / 17

LOGIC PROGRAMMING IN A CONSTRUCTION PLANNING WORKBENCH

LOGIC PROGRAMMING IN A CONSTRUCTION PLANNING WORKBENCH. Generation of a draft construction schedule from an IFC model (3D to 4D CAD). Research Project – CRC-CI 2002-056-C: Contract Planning Workbench

acacia
Download Presentation

LOGIC PROGRAMMING IN A CONSTRUCTION PLANNING WORKBENCH

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. LOGIC PROGRAMMING IN A CONSTRUCTION PLANNING WORKBENCH Generation of a draft construction schedule from an IFC model (3D to 4D CAD)

  2. Research Project – CRC-CI 2002-056-C: Contract Planning Workbench It investigates the feasibility of generating a draft construction schedule from an IFC repository, that is an automatic 3D to 4D CAD process Project Team – Fanny BoulaireA (CSIRO) John Crawford (CSIRO) Robin DrogumullerA (CSIRO) Cheryl McNamaraA (CSIRO) Gerardo TrinidadA (CSIRO) Guillermo Aranda-Mena (RMIT^) Rod Gameson (UNewcastle) Willy Sher (UNewcastle) Peter Ward (Unewcastle) David Marchant (Woods Bagot) Nick Windmeyer (John Holland) A CRC-CI Research Project

  3. 3D to 4D Transformation Building Information Model C – Identify building components A –Associate construction activities R – Estimate required resources S – Define sequence of activities CPW Draft Construction Schedule

  4. System Architecture CORE Logic Programs Schedule MS Project 3d CAD generates a schedule CARS Common Point 4d simulation Express DM CRC-IFC Viewer CRC-ICT Tools view stages in the construction

  5. Logic Programming • A declarative and relational style of programming based on first-order logic • PROLOG - original logic programming based on Horn clauses • A programmer writes a "database" of "facts“, e.g. human(“Gerry”) and "rules", e.g. mortal(X) :- human(X).

  6. Simple Prolog Example A, B C  A & B D  C ------ A, B, C C  A & B D  C ------- A, B, C, D C  A & B D  C -------- No more new facts A B C  A & B D  C D C Prolog Engine A, B C  A & B C D  C

  7. Logic Programming in CPW A is a reinforced concrete beam B is a reinforced concrete slab A is connected to B A and B are constructed together IF (X is a reinforced concrete beam) AND (Y is a reinforced concrete slab) AND (X is connected to Y) THEN (X and Y are constructed together)

  8. Relationships Between Elements • Connected: Column (C) is connected to beam (B) • Supports: Footing (F) supports column (C) • Constructed before: Footing (F) constructed before column (C) • Constructed together: Slab (S) and beam (B) are constructed together • Connected but not supported: Ground slab (G) is connected to, but not supported by column (C)

  9. Output of CPW • List of building elements or components (C) • List of construction activities associated with the building components (A) • List of required resources (R) • Sequence logic between activities (S) Table fragment listing construction activities and their precedence relations

  10. Precedence Constraints Duration: Task 1: 5 days Task 2: 6 days Task 3: 9 days Task 4: 4 days Task 5: 5 days 3 1 Start 4 End 2 IF i  Predecessors(j) THEN Start(i) + Duration(i)  Start(j) Start(1)  0 Start(2)  0 Start(3)  Start(1) + 5 Start(4)  Start(1) + 5 Start(4)  Start(2) + 6 Start(5)  Start(2) + 6 5 Predecessors(i) = {j | (j,i)  Edges} Predecessors(4) = {1, 2} Successor(i) = {j | (i,j)  Edges} Successor(1) = {3, 4}

  11. Tasks + Precedence = Schedule • Construction sequence when reinforced concrete columns, beams and slabs are erected monolithically: • column reinforcement • column formwork • scaffolding and formwork for beams and slabs • beam and slab reinforcement • column, beam and slab concrete

  12. Resource Constraints Duration: Task 1: 5 days Task 2: 6 days Task 3: 9 days Task 4: 4 days Task 5: 5 days Resources Required: Task 1: 1 unit R1 + 5 units R2 Task 2: 2 units R1 + 2 units R2 Task 3: 2 units R1 + 4 units R2 Task 4: 2 units R1 + 3 units R2 Task 5: 3 units R1 + 2 units R2 3 1 Start 4 End 2 Resources Available: 5 units of R1 7 units of R2 5 At any given time, the amount of resources in used is less than or equal to the amount of resources available. Task 1 and Task 2 can proceed concurrently, but Task 3, Task 4 and Task 5 can not proceed concurrently as required resources will exceed available resources

  13. Another Output of CPW Prepared as an ODBC data source for MS Project (version 2003)

  14. Simply a Graph Building a simple house

  15. Using Constraint Programming Start start foundations interior walls exterior walls chimney roof doors tiles windows A B C D E

  16. Constraint Logic Programming • A programming framework based (like Prolog) on first-order logic with a constraint solver added • CLP = LP + Constraint Solver • Can be more efficient in certain problems such as scheduling, planning and resource allocation

  17. Thank You 

More Related