A Byte of PhysicsLogo

Resistance and microscopic view

Resistance summarizes how a material and geometry oppose charge flow. A lumped resistor model links voltage and current while hiding microscopic scattering of mobile charges by a material's structure, temperature, and defects. It is a useful component contract, not a claim that electrons queue up at a graphical zigzag.

Think like a programmer

Keep resistance as a positive parameter with units and validate it at the constitutive-law boundary. Separate current(voltage, resistance) from circuit-graph solving so a later diode, lamp, temperature model, or measured lookup table can replace the linear rule without rewriting topology code. Record sign convention for voltage and current, then derive power from them.

Model checklist

Inputs
Signed voltage difference, positive resistance R in ohms, reference direction, and optional resistivity/material geometry.
State
Branch voltage, branch current, derived power, and parameter provenance.
Rule
For an ideal linear resistor, divide voltage by resistance; for a uniform wire, derive R from resistivity, length, and area.
Output
Compatible current, power, and sensitivity to material or geometry.
Check
Doubling R halves I at fixed V; reversing V reverses I; R = ρL/A scales up with length and down with area; non-positive R is rejected by the ideal helper.
\[V=IR\]

For a uniform wire in the macroscopic approximation,

\[R= ho rac{L}{A},qquad P=VI=I^2R= rac{V^2}{R}\]

ρ is resistivity in ohm metres, L is length, and A is cross-sectional area. This equation makes the hidden model inputs visible: a longer path raises resistance, while a wider conductive cross-section lowers it. It does not say individual carriers move through the wire at V/R; current is a charge-flow rate and power is energy-transfer rate.

Linear-resistor experiment

The source stays at 12 V while resistance changes. Current is calculated by the constitutive law before the displayed power is derived.

Derived current magnitude

Voltage 12 V; resistance 6.0 Ω; current 2.00 A; electrical power 24.0 W.

The text result provides the complete ideal-resistor calculation; the bar only scales the derived current.

At a fixed 12 V, increasing R reduces ideal current as 1/R. The lab derives power after current, so its output exposes a common modeling mistake: P = V²/R falls when resistance rises at fixed voltage, while P = I²R falls when current is held fixed only under a different experimental constraint. Always say which source condition is being held constant.

Try this experiment

Prediction: At fixed voltage, doubling resistance halves current and halves power; at fixed current, the power relation gives a different trend.

Compare R = 3 Ω and 6 Ω at 12 V, predict current and power before using the controls, then verify them. Write a positive-finite guard for a resistor helper. Finally set ρ, L, and A in a test fixture that doubles length and checks the resulting resistance ratio.

Where this model breaks

Real resistors heat, vary with temperature, exhibit tolerances and parasitic capacitance/inductance, and can be nonlinear or frequency dependent. At microscopic scales, geometry and material models may fail. Ideal Ohm’s law has a limited operating region; a finite power rating is a safety limit, not a term in the algebra above.

Summary

Treat resistance as a validated constitutive parameter with material and geometry provenance, not a rendering property. Derive current and power under explicit source conditions, then state when temperature, frequency, or nonlinearity requires a richer element model.

Glossary

Sources

Model contract

Treat the lesson as a small function before treating it as a fact to memorize. Give every value a unit, keep only the state needed for the next step, and make the output easy to inspect.

\[\text{observable output} = f(\text{inputs},\,\text{state})\]
Inputs
Quantities you set or measure, with units and useful bounds.
State
Values the program must retain to reproduce the next result.
Rule
The relationship or update that turns inputs and state into a result.
Check
A known limit, unit check, invariant, or measured result that can expose a bad model.

Implement the idea as a model

For Resistance and Microscopic View, write down the quantities you can control, the values your program must retain, and the result a reader could inspect. In Currents and Circuits, the useful program is not the drawing: it is the smallest explicit model that makes a prediction you can test.

Guided experiment

Prediction: changing one declared input while holding the others fixed should change only the outputs that the model connects to that input. Choose one input, predict the direction of change, then check a limiting case such as zero, a symmetric arrangement, or a familiar low-speed or small-change approximation.

Where this model breaks

This lesson is a teaching model, not a complete simulator. Before using it outside the stated question, check which interactions, scales, uncertainties, boundary conditions, and measurement limits it leaves out.

Summary

Treat Resistance and Microscopic View as a contract: named inputs and units enter a rule, the rule produces an observable result, and a known limit or invariant checks whether the implementation deserves trust.

Glossary

  • Input: a measured value or chosen parameter supplied to a model.
  • State: the smallest set of values needed to continue or reproduce a model.
  • Validation: comparing an output with a known result, limit, invariant, or measurement.

Self-check

  1. Which values are inputs, and which values must remain state?
  2. What observable result would tell you the model is behaving as expected?
  3. Which assumption would you test first before applying the model to a real system?

Model review: turn Resistance and Microscopic View into a test

Use validated resistance parameters and constitutive laws to derive compatible circuit branch current.

  1. Name the inputs and units that the currents and circuits model needs.
  2. Separate the state you must keep from values you can calculate when needed.
  3. Write one rule that maps the current state and inputs to an observable result.
  4. Choose a limiting case, unit check, invariant, or known result before trusting an output.
  5. State one assumption you would change before using this simplified model for a real decision.

Share to: