1 / 48

Diploma Thesis Martin Homik

Resource Optimization of Workflow Problems. Diploma Thesis Martin Homik. Tutors: Christian Schulte Tobias Müller. Overview. Motivation Problem specification Model and heuristic Implementation Results Summary Demo. Object A. Object B. Motivation: Bulk Production.

brent
Download Presentation

Diploma Thesis Martin Homik

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. Resource Optimization of Workflow Problems Diploma Thesis Martin Homik Tutors: Christian Schulte Tobias Müller

  2. Overview • Motivation • Problem specification • Model and heuristic • Implementation • Results • Summary • Demo

  3. Object A Object B Motivation: Bulk Production • Goals of assembly lines: • high output capacity • low investment (machine types, number) • Goals of flexible production systems: • one assembly line for all variants!

  4. Object A+B Motivation: Bulk Production • Goals of assembly lines: • high output capacity • low investment (machine types, number) • Goals of flexible production systems: • one assembly line for all variants!

  5. Abstraction as a workflow problem! Motivation Bulk production problem is transferable: • Industry (computer integrated manufacturing) • Building trade (house-building) • Business life (customer service) • Computer science (distributed programming)

  6. Workflow Abstraction • Standardization by the Workflow Management Coalition: • Terms • Workflow definitions • Workflow systems

  7. Workflow Abstraction Levels • Process logic • At what time is which activity to be executed? • Organisation • Who executes which activity? • Infrastructur • What resources are in what number requiered? Process definition: is a data structure which contains informations about process logic, organisation and infrastructure.

  8. Terms • Attributed resources • Flexible processes • Continuous supply and directed flow • Balance, cycle time • Organisation, infrastructur • Partitioning

  9. Overlap Overlap C: 150 € Sut: 200 St: 90% C: 250 € Sut: 200 St: 95% C: 400 € Sut: 200 St: 95% Attributed Resources(Workflow Participant Types) 11, 12, 15 12, 13, 16, 19 17, 18, 19 Skills overlap arbitrarily! C = Cost Sut = set-up time St = Stability

  10. 11 13 17 18 0 12 16 19 100 15 Start End Precedence relation Activity Partially Ordered Plan (POP) Each activity has to be executet!

  11. 11 13 17 18 20 21 22 0 12 16 19 100 11 13 17 11 13 17 18 15 0 12 16 19 100 0 12 19 100 15 15 Flexible Processes

  12. Continuous Supply There is always work to do at each station! Object are passed only in one direction!

  13. Scheduling: • min. running time • cycle time running time • Continuous supply: • running time • min. cycle time Balance

  14. 11 13 17 18 20 21 22 0 12 16 19 100 11 13 17 11 13 17 18 15 0 12 16 19 100 0 12 19 100 15 15 Problem Specification (Given) maximal cycle time

  15. Aj Blocki Problem Specification (2) Organisation? Infrastructure?

  16. Aj Blocki Problem Specification (2) Organisation? Process logic? Infrastructure?

  17. 11 13 17 18 0 12 16 19 100 11 13 17 18 15 0 12 16 19 100 15 Partitioning (Example) Partitioning guarantees a directed data flow!

  18. 11 13 17 18 0 12 16 19 100 15 1. Rule: 15 16: 15 in 16 in different blocks 11, 12, 15 12, 13, 16, 19 17, 18, 19 Partitioning

  19. 11 13 17 18 0 12 16 19 100 15 2. Rule: 12 15: 12 in and 15 in the same block 11, 12, 15 12, 13, 16, 19 17, 18, 19 Partitioning (2)

  20. 11 13 17 18 0 12 16 19 100 15 11, 12, 15 3. Rule: 16 19: 16 in 19 in and a) different blocks b) the same block 12, 13, 16, 19 17, 18, 19 Partitioning (3)

  21. Basic Model • Data structures • Block running time • Infrastructure • Effective cycle time

  22. Set of all activities: Set of all dates: Set of percentage: Model: Data Structures Number blocks: Set of all costs: General loss: Maximum cycle time:

  23. Model: Resource Projections:

  24. Model: Data Structures Participant type tuple: Number participant types tuple: Costs:

  25. Nodes Edges Projections: Model: POP A POP is a directed, acyclic and compound graph: We denote the set of all POPs by:

  26. Model: POP Union: Let Then

  27. Model: Partition Let and Partition of Au in: And ...next slide

  28. Model: Partition(2) Properties of a directed flow: Otherwise:

  29. Model: Partition(3) General Assignment:

  30. U U A1 A2 A3 Su1 Su2 t Total Running Time per Block transit time running times set-up time total running time / block

  31. Rtb Infrastructure Number of resources in a block Si (where WPT Wi) Number resources

  32. Process 1 5 6 4 8 Process 2 1 0 7 8 Sum 5 6 7 8 26 Infrastructur (2) • How many resources are required for flexible processes? • Compute the number per block and per POP. • Choose the block with maximum number. • Sum all maxima.

  33. Cycle Time cycle time number resources

  34. Cycle Time (2) • What is the (effective) solution cycle time? • Compute per block and POP the cycle time. • The highest cycle time ist the effective cycle time.

  35. number blocks Number of blocks is increasing Choose the block with the least resource type assignment possibilities. Assign the cheapest resource type. resources Choose the longest activity. Assign it to the block with the cheapest resource. activities Heuristic (Design)

  36. 400€ 150€ 250€ Goal-oriented Heuristic 1. Filter: nondetermined activity 2. Order/Select: choose longest activity 3. Value: assign to the block with the cheapest WPT.

  37. 400€ 150€ 250€ Problem: Goal-oriented Heuristic Bad!

  38. 400€ 150€ 250€ Problem: Goal-oriented Heuristic Better!

  39. Implementation (Woop) • Mozart/Oz: constraint programming • C. 15 000 lines of code • Direct translation of the mathematical model • Dynamic script generation • Dynamic choice of heuristic • Interface to standard search machines • User-defined constraints

  40. Implementation (Woop) • Administration of solutions/problems • Export of solutions • Record function: Email/File • Editor for designing of POPs • Verification of POPs • Internationalization/Localization

  41. Results Example: • Two POPs • Each 50 activities • 9 WPT • First solution: • c. 60 choice points •  1Sec. • Best solution: • 13:40 hours • 22.084.534 cp • 4.74% better

  42. Reduced tool magazines More blocks Increase in complexity Costs: Resources, Blocks, Tools Precise Model Tools:

  43. More exact results No improvement in runtime! Precise Model (2) Mixed data flow: Local duration times: • Concurrent processing of different POPs

  44. Identification of a new class of problems Contribution (Summary) Practice: Successful application of Woop in practice Abstraction: of a manufacturing problem as a ... Workflow Problem: definition und analysis Woop: implementation of a software for finding generic solutions; Mozart/Oz ; Technique: CP

  45. Related Work Total concept: • Workflow Management Coalition (WfMC) www.wfmc.org • S. Bussmann, K. Schild: An agent-based approach to the control of flexible production systems Simulation und Verifikation: • Andreas Oberweis: Zeit- und Kostenanalyse von Geschäftsprozessen mit höheren Petrinetzen • Scheer: ARIS Toolset

  46. Related Work(2) Generic Approximation: • M. Gillmann: Konfiguration verteilter Workflow Management Systeme mit Leistungsgarantien • No directed data flow • Involves a control flow • Resources are given • Approximation of the maximal cycle time • Pessimistic Approximation by Markov-Chains

  47. Scheduling (Bridge) • WPTs: • 10 types • No overlap! • Activities: • 44 activities • crane work is time • expensive

  48. Scheduling (Bridge) worker excavator carpentry crane 35 2 11 17 23 29 36 42 3 12 18 24 30 37 4 8 13 19 25 31 1 38 44 5 9 14 20 26 32 39 6 15 21 27 33 40 43 7 16 22 28 34 10 Pile driver caterpillar 41 concrete mixer bricklaying

More Related