Bird
0
0
PCB Designbi_tool~15 mins

Power integrity basics in PCB Design - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a PCB design engineer working on a new electronic device.
📋 Request: Your manager wants you to analyze the power integrity of the PCB to ensure stable voltage supply and minimize noise.
📊 Data: You have voltage measurements at various test points on the PCB under different load conditions, along with timestamps and load current values.
🎯 Deliverable: Create a report with charts showing voltage stability over time, identify any voltage drops or noise spikes, and provide recommendations to improve power integrity.
Progress0 / 8 steps
Sample Data
TimestampTest PointVoltage (V)Load Current (A)
10:00TP13.30.5
10:00TP23.280.5
10:05TP13.251.0
10:05TP23.221.0
10:10TP13.201.5
10:10TP23.181.5
10:15TP13.152.0
10:15TP23.102.0
10:20TP13.122.5
10:20TP23.082.5
1
Step 1: Load the data into your BI tool and create a table visualization showing Timestamp, Test Point, Voltage, and Load Current.
Use the raw data as is for initial inspection.
Expected Result
A table showing all voltage readings at each test point over time with corresponding load currents.
2
Step 2: Create a line chart with Timestamp on the X-axis and Voltage on the Y-axis. Use Test Point as the legend to show separate lines for TP1 and TP2.
Configure line chart: X=Timestamp, Y=Voltage, Legend=Test Point.
Expected Result
A line chart showing voltage trends over time for TP1 and TP2.
3
Step 3: Add Load Current as a secondary Y-axis on the same chart to see how voltage changes relate to load current.
Configure secondary Y-axis for Load Current with same X-axis (Timestamp).
Expected Result
Combined chart showing voltage drop and load current increase over time.
4
Step 4: Calculate the voltage drop at each test point by subtracting the minimum voltage from the maximum voltage over the time period.
Create measure: Voltage Drop = MAX(Voltage) - MIN(Voltage) grouped by Test Point.
Expected Result
Voltage Drop for TP1 = 3.3 - 3.12 = 0.18 V; for TP2 = 3.28 - 3.08 = 0.20 V.
5
Step 5: Create a bar chart showing voltage drop for each test point.
Configure bar chart: X=Test Point, Y=Voltage Drop measure.
Expected Result
Bar chart showing TP2 has slightly higher voltage drop than TP1.
6
Step 6: Identify any noise spikes by calculating the difference between consecutive voltage readings at each test point.
Create measure: Voltage Change = Voltage at current timestamp - Voltage at previous timestamp, grouped by Test Point.
Expected Result
Voltage changes mostly small except a slight drop at 10:15 for TP2.
7
Step 7: Create a scatter plot with Timestamp on X-axis and Voltage Change on Y-axis, with Test Point as legend.
Configure scatter plot: X=Timestamp, Y=Voltage Change, Legend=Test Point.
Expected Result
Scatter plot showing voltage change spikes over time for each test point.
8
Step 8: Summarize findings in a report: voltage drops increase with load current, TP2 shows slightly worse power integrity, and minor noise spikes occur at higher loads.
Write summary text based on visualizations and calculations.
Expected Result
Clear report explaining voltage stability issues and recommendations.
Final Result
Power Integrity Report

Timestamp  | TP1 Voltage | TP2 Voltage | Load Current
-----------------------------------------------------
10:00     | 3.3 V       | 3.28 V      | 0.5 A
10:05     | 3.25 V      | 3.22 V      | 1.0 A
10:10     | 3.20 V      | 3.18 V      | 1.5 A
10:15     | 3.15 V      | 3.10 V      | 2.0 A
10:20     | 3.12 V      | 3.08 V      | 2.5 A

Voltage Drop (V): TP1=0.18, TP2=0.20

Observations:
- Voltage decreases as load current increases.
- TP2 has slightly higher voltage drop than TP1.
- Minor voltage noise spikes detected at 10:15.

Recommendations:
- Improve power delivery network at TP2.
- Add decoupling capacitors to reduce noise.
- Monitor voltage under peak loads.
Voltage at both test points drops as load current increases.
Test Point 2 (TP2) experiences a slightly higher voltage drop than TP1.
Small voltage noise spikes appear at higher load currents, especially around 10:15.
Improving power delivery and adding noise reduction components can enhance power integrity.
Bonus Challenge

Create a DAX measure or equivalent formula to calculate the average voltage for each test point during load currents above 1.5 A.

Show Hint
Filter the data where Load Current > 1.5 A, then calculate the average Voltage grouped by Test Point.