Operations planning is like creating a roadmap for a big school event. It tells us what needs to be done, when it should start, and how long it will take. The goal is to make sure everything runs smoothly and on time.
CPA helps us decide how many resources (people, machines, money) we need for each task. Think of it as deciding how many pizza slices to order for a party so everyone gets enough.
A network diagram is a visual map that shows the sequence of tasks in a project. It’s like a flowchart for a recipe: you see which steps must happen before others.
Let’s plan a simple project to build a model car in a week.
| Task | Duration (days) | Predecessors | Early Start | Late Start | Slack |
|---|---|---|---|---|---|
| Design Car Body | 2 | None | Day 0 | Day 0 | 0 |
| Paint Body | 1 | Design | Day 2 | Day 2 | 0 |
| Build Wheels | 1 | Design | Day 2 | Day 4 | 2 |
| Attach Wheels | 1 | Paint, Build Wheels | Day 3 | Day 3 | 0 |
| Test Drive | 1 | Attach Wheels | Day 4 | Day 4 | 0 |
In this example, the critical path is Design → Paint → Attach Wheels → Test Drive (total 5 days). Any delay here pushes the final delivery date.
Once we know the duration of each task, we can estimate the cost:
\$\text{Total Cost} = \sum{i=1}^{n} (\text{Duration}i \times \text{Cost per Day}_i)\$