Unit 6 / 9

Power Systems and Energy Analysis

Gains:

  • Ability to set up power problems such as load calculation, cable cross-section and voltage drop with correct assumptions to AI
  • Ability to analyze power factor, harmonic and energy consumption data with AI and make a meaningful summary
  • Ability to implement the obligation to verify the protection and cross-section values recommended by AI with the relevant standard and engineer approval

Power systems are the area of ​​electrical engineering that most directly affects the safety of life and property. Choosing the wrong cable cross-section, a breaker rating, or a grounding scheme may seem like a minor mistake on paper, but it could mean overheating, fire, or electric shock in the field. In this field, AI accelerates tasks such as load calculation, voltage drop, power factor and energy consumption analysis; But it is precisely in this area that independent verification of the output and authorized engineer approval are non-negotiable. In this unit, we will cover how to set power problems to AI with correct assumptions, interpret energy data, and why no protection/cutoff value can be applied without verification.

Load Calculation, Cross Section and Voltage Drop

The core of power distribution design is three-related calculations: the current drawn by the load, the ability of the cable to carry this current safely (thermal), and the voltage drop along the line remaining within the limit. AI can establish these steps; but you must check the assumption of each step.

Current for a three-phase load:

Three phase current: I = P / (√3 · U · cosφ · η)Example: P = 15 kW, U = 400 V, cosφ = 0.85, η = 0.90I = 15000 / (1.732 · 400 · 0.85 · 0.90)I = 15000 / 529.9 ≈ 28.3 A

The cable that will carry this current is selected in terms of both thermal current carrying capacity (corrected according to the mounting method and ambient temperature) and voltage drop. Approximate voltage drop in copper conductor:

Three-phase voltage drop (approximately, resistive):ΔU = √3 · I · L · ρ / A ρ (copper) ≈ 0.0175 Ω·mm²/m, L = 60 m, A = 6 mm²ΔU = 1.732 · 28.3 · 60 · 0.0175 / 6 ≈ 8.6 Vpercentage: 8.6 / 400 = 2.15% → Below 3% limit ✓ (6 mm² is a suitable candidate)

Attention: These calculations are preliminary evaluations. Final section selection; It is carried out by an authorized engineer by evaluating the thermal current carrying capacity (with correction factors), short circuit resistance, compatibility with the protection device and the relevant installation standard. A single section value given by AI cannot be applied without verifying the standards tables and safety margin.

Weak Prompt / Strong Prompt

WEAK:"Which cable for a 15 kW motor?"(Result: single section without context; given without knowing the voltage, distance, installation, temperature, voltage drop limit, it is not safe.)STRONG:"Copper cable cross-section for the following conditions. Make PRELIMINARY CALCULATION and show the steps:- Load: 15 kW, 400 V three phase, cosφ 0.85, efficiency 0.90- Line: 60 m, conduit, medium 35 °C - Voltage drop limit: 3%Calculate current, voltage drop and required thermal capacity SEPARATELY. Emphasize that the result must be VERIFIED with the standard current carrying table and protection selection; do not make a binding selection statement."

Power Factor, Harmonic and Energy Analysis

In power quality analysis, AI is powerful in summarizing measurement data and extracting patterns. But it is essential to establish the basic concepts correctly.

Power triangle. The relationship between active power P (kW), reactive power Q (kVAR) and apparent power S (kVA):

S² = P² + Q²cosφ = P / S (power factor)Example: P = 80 kW, cosφ = 0.80 → S = 100 kVA, Q = 60 kVARif cosφ is reduced to 0.95 by compensation: new Q = 80·tan(acos0.95) ≈ 26.3 kVARErequired capacitor power: 60 − 26.3 ≈ 33.7 kVAR

Harmonics. Non-linear loads (drivers, power supplies) produce current harmonics. Total harmonic distortion (THD) indicates how distorted the signal is. Physically test the expected resources (number of drives, switching) when interpreting AI harmonic measurement data.

size

symbol

unit

frequently confused

active power

P.

kW

with visible force

reactive power

Q

kVAR

activate

apparent power

S.

kVA

activate

Energy

E.

kWh

by power (kW)

Tip: The most common AI error in power systems is unit confusion: kW with kVA, kWh with kW, kVAR with kW. Check one by one that the unit of each quantity in the AI ​​output is correct. Confusing a "power" value with an "energy" value messes up everything from billing to protection selection.

Interpreting Energy Consumption Data

AI can analyze hourly/daily energy consumption data (kWh) and reveal peak hours, base load and abnormal consumption. Simple summary from a consumption series with Python:

import numpy as np# hourly kWh data (example 24 hours)kwh = np.array([12,11,10,10,11,14,22,35,40,38,36,34, 33,32,34,37,42,45,40,30,22,18,15,13])print("Total daily (kWh):", kwh.sum())print("Peak hour:", kwh.argmax(), "->", kwh.max(), "kWh")print("Base load (min):", kwh.min(), "kWh")print("Load factor:", kwh.mean()/kwh.max())

The AI might interpret this summary and say “peak at 4pm”; You compare it to the facility's work shift and verify whether it makes sense. If the load factor is low (peak high, average low), there is an opportunity for demand management or compensation.

Mini Case

An energy engineer has AI perform compensation calculations to reduce the reactive penalty charge on a factory's monthly bill. AI recommends a 200 kVAR capacitor bank. The engineer looks at the harmonic measurement: there are many frequency drives in the plant and the THD is high. The standard capacitor bank may resonate with harmonics and be damaged; Here a harmonic filtered (detuned) reactor is required. AI had not taken into account the presence of harmonics. The engineer converts the solution into a bank with a detuned reactor and implements it with authorized verification. Lesson: The AI's compensation calculation may be correct, but the engineer evaluates the risk of harmonic environment and resonance.

Common Mistakes

  • Mixing kW/kVA/kVAR and kW/kWh units.
  • Finishing the section selection with a single formula and skipping the thermal correction and standard table.
  • Ignoring short circuit resistance and protection coordination.
  • Not taking into account the harmonic environment and resonance risk in compensation.
  • Not verifying the voltage drop limit (%).
  • Applying safety-critical values ​​without engineer approval.

In summary

  • Load current, cable thermal capacity and voltage drop are three interconnected calculations; All are verified.
  • Section and protection selection standard tables require short circuit resistance and engineer approval.
  • Power triangle (P, Q, S) and power factor must be installed correctly; Unit confusion is the most common error.
  • Harmonic environment and resonance risk must be evaluated in compensation.
  • AI summarizes energy consumption data; The engineer does the physical interpretation and verification.
  • No safety-critical values ​​in power systems are implemented without independent verification and approval.

Application task

For a load (e.g. a motor between 15-30 kW) ask AI for a preliminary calculation of cable cross-section and protection. Then: (1) independently calculate the current, voltage drop and thermal requirement manually or with Python, (2) compare the result with a standard current carrying table, (3) check one by one that the unit of each quantity in the output (A, V, kW, kVA) is correct. If you find an incompatibility or unit error, identify and correct the source and note why authorized engineer approval is required.