Level 5 — MasteryElectricity & Charge Basics

Electricity & Charge Basics

60 minutes50 marksprintable — key stays hidden on paper

Subject: Hardware · Chapter 1.1 Time limit: 60 minutes Total marks: 50 Instructions: Answer all three questions. Show full working. Use V=IRV=IR, P=VIP=VI, q=Itq=It, e=1.602×1019Ce=1.602\times10^{-19}\,\text{C}. Coding answers may be written in Python (NumPy allowed).


Question 1 — Charge, Current, and Power Audit of a DC Rail (18 marks)

A datacentre 12 V DC power rail supplies a resistive heater module of resistance R=4.8ΩR = 4.8\,\Omega.

(a) Define the ampere in terms of charge and time, then compute the steady current in the heater. (3)

(b) How many electrons pass a cross-section of the wire in one minute? Give your answer to 3 significant figures. (4)

(c) Compute the power dissipated by the module using two independent formulas (P=VIP=VI and P=I2RP=I^2R) and confirm they agree. (4)

(d) The rail conductor is copper. Explain, in terms of band structure / free carriers, why copper conducts while the module's plastic housing insulates. State clearly the direction of conventional current vs electron flow through the heater. (4)

(e) Over an 8-hour shift, express the total energy delivered in joules and kilowatt-hours, and explain the difference between energy and power. (3)


Question 2 — Reactive Components and AC Behaviour (18 marks)

A signal v(t)=5sin(2π50t)v(t) = 5\sin(2\pi \cdot 50\, t) volts (SI units) is applied across components.

(a) Distinguish a DC signal from this AC signal. State the period, frequency, and peak value of v(t)v(t). (3)

(b) A capacitor of C=100μFC = 100\,\mu\text{F} carries charge q=Cvq = Cv. Derive the instantaneous current i(t)=Cdvdti(t)=C\,\frac{dv}{dt} and give its peak value. State the phase relationship between i(t)i(t) and v(t)v(t). (5)

(c) Define the farad and the henry from first principles (C=q/VC = q/V, vL=Ldi/dtv_L = L\,di/dt). (4)

(d) Prove that the energy stored in a capacitor charged to voltage VV is E=12CV2E = \tfrac12 C V^2 by integrating Vdq\int V\,dq. (4)

(e) Compute the stored energy when the 100μF100\,\mu\text{F} capacitor is charged to the peak voltage of v(t)v(t). (2)


Question 3 — Build & Verify a Circuit Solver (14 marks)

A series circuit has an EMF source Vs=9VV_s = 9\,\text{V} and three resistors R1=100ΩR_1=100\,\Omega, R2=220ΩR_2=220\,\Omega, R3=330ΩR_3=330\,\Omega.

(a) Using Ohm's law, derive expressions for the total current and the voltage dropped across each resistor. Compute all values. (4)

(b) Write a Python function series_circuit(Vs, resistors) that returns the total current, the list of voltage drops, and the total power. It must (i) confirm the voltage drops sum to VsV_s, and (ii) confirm P=VsIP=V_sI equals I2Rk\sum I^2R_k. (6)

(c) Interpret this schematic fragment and identify each symbol; state which quantity each measures and its unit: a battery in series with a resistor, an ammeter, and a voltmeter placed across the resistor. (4)

Answer keyMark scheme & solutions

Question 1

(a) The ampere is one coulomb of charge passing a point per second: 1A=1C/s1\,\text{A} = 1\,\text{C/s}, i.e. I=q/tI = q/t. (1) I=V/R=12/4.8=2.5AI = V/R = 12/4.8 = 2.5\,\text{A}. (2)

(b) q=It=2.5×60=150Cq = It = 2.5 \times 60 = 150\,\text{C}. (2) N=q/e=150/(1.602×1019)=9.363×1020N = q/e = 150 / (1.602\times10^{-19}) = 9.363\times10^{20} electrons 9.36×1020\approx 9.36\times10^{20}. (2)

(c) P=VI=12×2.5=30WP = VI = 12 \times 2.5 = 30\,\text{W}. (2) P=I2R=2.52×4.8=6.25×4.8=30WP = I^2R = 2.5^2 \times 4.8 = 6.25\times4.8 = 30\,\text{W}. Agreement confirms consistency. (2)

(d) Copper is a metal: overlapping/partially-filled conduction band gives a sea of delocalised free electrons, so a small field drives large current. Plastic (insulator) has a large band gap and no free carriers, so electrons stay bound. (2) Conventional current flows from + to − terminal (12 V high side to 0 V) through the heater; electron flow is opposite — electrons drift from − to + terminal. (2)

(e) t=8×3600=28800st = 8\times3600 = 28800\,\text{s}; E=Pt=30×28800=864000J=8.64×105JE = Pt = 30\times28800 = 864000\,\text{J} = 8.64\times10^5\,\text{J}. (1) In kWh: E=30W×8h=240Wh=0.24kWhE = 30\,\text{W} \times 8\,\text{h} = 240\,\text{Wh} = 0.24\,\text{kWh}. (1) Power (W) is rate of energy transfer per second; energy (J) is the accumulated total = power × time. (1)

Question 2

(a) A DC signal has constant polarity/value with time; v(t)v(t) is AC — it periodically reverses sign. Frequency f=50Hzf = 50\,\text{Hz}, period T=1/f=0.02sT = 1/f = 0.02\,\text{s}, peak value Vpk=5VV_{pk}=5\,\text{V}. (3)

(b) i(t)=Cdvdt=C5(2π50)cos(2π50t)i(t) = C\frac{dv}{dt} = C\cdot 5\cdot(2\pi\cdot50)\cos(2\pi\cdot50\,t). (2) i(t)=100×106×5×100πcos(100πt)=0.05πcos(100πt)i(t) = 100\times10^{-6}\times5\times100\pi\cos(100\pi t) = 0.05\pi\cos(100\pi t) A. (1) Peak current Ipk=0.05π0.157AI_{pk}= 0.05\pi \approx 0.157\,\text{A}. (1) Current leads voltage by 9090^\circ (cosine vs sine). (1)

(c) Farad: capacitance of a body that holds 1 coulomb per volt, C=q/VC=q/V, so 1F=1C/V1\,\text{F}=1\,\text{C/V}. (2) Henry: inductance producing 1 volt for a current change of 1 A/s, vL=Ldi/dtv_L=L\,di/dt, so 1H=1V⋅s/A1\,\text{H}=1\,\text{V·s/A}. (2)

(d) Work to move charge dqdq across potential vv where v=q/Cv=q/C: E=0Qvdq=0QqCdq=Q22CE=\int_0^Q v\,dq = \int_0^Q \frac{q}{C}\,dq = \frac{Q^2}{2C}. (2) With Q=CVQ=CV: E=(CV)22C=12CV2E = \frac{(CV)^2}{2C} = \tfrac12 CV^2. (2)

(e) E=12(100×106)(5)2=12×104×25=1.25×103J=1.25mJE = \tfrac12 (100\times10^{-6})(5)^2 = \tfrac12\times10^{-4}\times25 = 1.25\times10^{-3}\,\text{J} = 1.25\,\text{mJ}. (2)

Question 3

(a) Series: Rtot=R1+R2+R3=100+220+330=650ΩR_{tot}=R_1+R_2+R_3 = 100+220+330 = 650\,\Omega. (1) I=Vs/Rtot=9/650=0.013846A13.85mAI = V_s/R_{tot} = 9/650 = 0.013846\,\text{A} \approx 13.85\,\text{mA}. (1) Vk=IRkV_k = I R_k: V1=1.3846VV_1 = 1.3846\,\text{V}, V2=3.0462VV_2 = 3.0462\,\text{V}, V3=4.5692VV_3 = 4.5692\,\text{V}. (1) Sum =9.000V= 9.000\,\text{V} ✓ (KVL). (1)

(b) (function correct 4, both checks 2)

def series_circuit(Vs, resistors):
    Rtot = sum(resistors)
    I = Vs / Rtot
    drops = [I * R for R in resistors]
    assert abs(sum(drops) - Vs) < 1e-9          # KVL check
    P = Vs * I
    assert abs(P - sum(I**2 * R for R in resistors)) < 1e-9  # power check
    return I, drops, P
 
# series_circuit(9, [100,220,330]) -> (0.013846..., [1.384..,3.046..,4.569..], 0.1246..)

(c) (1 each) Battery: DC EMF source, measured in volts (V). Resistor: opposes current, ohms (Ω\Omega). Ammeter: in series, measures current in amperes (A), ideally zero resistance. Voltmeter: across (parallel to) the resistor, measures potential difference in volts (V), ideally infinite resistance.

[
  {"claim":"Q1 current 2.5 A and electrons ~9.363e20", "code":"I=Rational(12)/Rational(48,10); q=I*60; N=q/1.602e-19; result = (I==Rational(5,2)) and abs(N-9.363e20)<1e18"},
  {"claim":"Q1 power equal both formulas =30 W", "code":"I=Rational(5,2); result = (12*I==30) and (I**2*Rational(48,10)==30)"},
  {"claim":"Q2 cap energy at 5V = 1.25 mJ", "code":"E=Rational(1,2)*100e-6*5**2; result = abs(E-1.25e-3)<1e-12"},
  {"claim":"Q3 total current and drops sum to Vs", "code":"Rtot=100+220+330; I=Rational(9,Rtot); drops=[I*R for R in (100,220,330)]; result = (sum(drops)==9) and abs(float(I)-0.0138461538)<1e-9"}
]