Concept Flow
[Start] → [Identify layers and thickness] → [Sum thickness values] → [Output total thickness]
This flow shows how the PCB layer stack thickness is calculated by summing the thickness of each layer.
[Start] → [Identify layers and thickness] → [Sum thickness values] → [Output total thickness]
=SUM(C2:C5)This formula sums the thickness values in cells C2 through C5 to calculate the total PCB thickness.
| Step | Operation | Expression | Result | Explanation |
|---|---|---|---|---|
| 1 | Reference cells | C2 + C3 + C4 + C5 | 0.035 + 0.1 + 1.5 + 0.035 | Identify thickness values to sum |
| 2 | Add first two | 0.035 + 0.1 | 0.135 | Sum Top Copper and Prepreg thickness |
| 3 | Add Core layer | 0.135 + 1.5 | 1.635 | Add Core thickness |
| 4 | Add Bottom Copper | 1.635 + 0.035 | 1.67 | Add Bottom Copper thickness for total |
| Step | Variable | Value Before | Operation | Value After |
|---|---|---|---|---|
| 1 | Sum | 0 | Add 0.035 (C2) | 0.035 |
| 2 | Sum | 0.035 | Add 0.1 (C3) | 0.135 |
| 3 | Sum | 0.135 | Add 1.5 (C4) | 1.635 |
| 4 | Sum | 1.635 | Add 0.035 (C5) | 1.67 |