Cable Size Calculator

Correction factors applied:

For 30 A, assume 4 mm² Cu PVC has 37 A rating. cable size calculator

For three-phase: [ V_d = \frac\sqrt3 \times L \times I \times (R\cos\phi + X\sin\phi)1000 ] Simplified (for power factor ~0.8): ( V_d \approx \frac1.732 \times L \times I \times R1000 ) Correction factors applied: For 30 A, assume 4

⚠️ Always verify results with local electrical code tables. Correction factors applied: For 30 A

| Mistake | Consequence | |---------|--------------| | Ignoring voltage drop on long runs | Equipment malfunctions | | Forgetting grouping derating | Overheating | | Using 2-core cable data for 3-core | Underestimation of heating | | Assuming ambient = 30°C always | Under-rating in hot locations | | Neglecting AC resistance vs DC | Error in long cables | | Using peak current instead of continuous | Oversizing (costly but safe) |

# Calculate actual voltage drop for the recommended size if isinstance(recommended_size, (int, float)): actual_v_drop_volts = (2 * current_amps * length_meters * resistivity) / recommended_size actual_v_drop_percent = (actual_v_drop_volts / voltage) * 100 else: actual_v_drop_volts = min_area_mm2 # Placeholder for logic actual_v_drop_percent = allowable_v_drop_percent