4. Open the components
Why did the 8 V output fall?
Section titled “Why did the 8 V output fall?”The previous chapter assumed the voltmeter drew negligible current. Now connect a 2 kΩ load between the midpoint and ground. The upper resistor must carry the load current as well as the lower-resistor current. Predicting an unchanged 8 V would silently reuse the old connection equations.
We will derive the new voltage, inspect the library definitions, and decide which part of the model actually needs to change.
Derive the loaded divider
Section titled “Derive the loaded divider”Let be the midpoint voltage. Ohm’s law gives three currents:
Junction conservation requires . Substitution gives
Equivalently, the two lower branches form , followed by . The equivalence follows from shared voltage and summed currents, as in OpenStax §10.2.
For kΩ and kΩ, kΩ. Thus V, mA, and mA. The powers are 0.036 W in the upper resistor, 0.018 W in each lower branch, and −0.072 W in the source.
What the import actually says
Section titled “What the import actually says”Here is the full source imported as electrical in the packaged divider:
public connector Pin { across voltage: kg * m ^ 2 / (s ^ 3 * A); through current: A;}
public component IdealVoltageSource( parameter voltage: kg * m ^ 2 / (s ^ 3 * A), port positive: Pin, port negative: Pin) { relation law { positive.voltage - negative.voltage - voltage = 0; positive.current + negative.current = 0; }}
public component Resistor( parameter resistance: kg * m ^ 2 / (s ^ 3 * A ^ 2), port positive: Pin, port negative: Pin) { relation law { positive.voltage - negative.voltage - resistance * positive.current = 0; positive.current + negative.current = 0; }}
public component Ground( port terminal: Pin) { relation law { terminal.voltage = 0; }}Read the definition in its package.
The resistor owns two statements: its voltage-current law and internal charge conservation. Neither mentions the load or the surrounding junctions. Therefore we can reuse precisely this resistor definition for the new load.
The source owns a prescribed voltage difference and internal current balance. It does not prescribe how much current must flow. The network determines that. Ground owns only the zero-potential reference.
Add the physical branch
Section titled “Add the physical branch”In the complete direct divider.eqi from chapter 3, add an instance:
instance load: Resistor(resistance = 2[kOhm]);Replace the midpoint and return connections with:
connect upper.negative, lower.positive, load.positive;connect lower.negative, load.negative, source.negative, ground.terminal;Keep the top connection unchanged. Add an observation for the new branch:
observable load_power: W = (load.positive.voltage - load.negative.voltage) * load.positive.current;Add ("load_power", "W") to the direct runner’s observation list. Run again
and compare all powers, including the load, with the derived values. The old
sum of just three powers should now be −0.018 W: it omits the load’s absorption.
In the packaged source, the corresponding instance uses
electrical.Resistor. This name change only locates the component definition;
the new junction equations have exactly the same role.
A parameter edit or a different law?
Section titled “A parameter edit or a different law?”Changing a constant resistance from 1 kΩ to 2 kΩ preserves the form . Connecting another resistor changes topology. Both can use the same component. By contrast, asking resistance to vary with temperature changes the law and introduces another physical quantity.
As a modeling exercise, consider
Here has units K⁻¹, so the bracket is dimensionless. This is an assumed local linear approximation, not a universal law for all resistors. It requires a temperature and an appropriate range in which remains positive. Predicting in turn requires the thermal energy balance introduced in chapter 1.
This is the useful question to ask when opening a component: which assumption does its equation make, and does my experiment still satisfy it? See constitutive laws for a wider discussion, or follow the heat into heat transfer.
Exercises
Section titled “Exercises”- Find the load resistance that lowers the original 8 V output to 4 V.
- Show that the unloaded prediction returns as grows without bound.
- A loaded calculation gives the correct midpoint but the three-power sum fails. Explain why this alone need not indicate a solver error.
- At a fixed current, a resistor’s resistance rises by 10%. What happens to its power? What if voltage, rather than current, is held fixed?
Answer sketches
- , so Ω, about 667 Ω.
- tends to zero, leaving .
- The load is a fourth component that absorbs power. Audit all branches before changing numerical tolerances.
- At fixed current, rises by 10%. At fixed voltage, becomes of its original value. The surrounding circuit determines what is actually held fixed.
Reference
Section titled “Reference”Samuel J. Ling, William Moebs, and Jeff Sanny, University Physics Volume 2, OpenStax (2016), §10.2, Resistors in Series and Parallel.
Previous: Build and run a divider · Book map · Next: Storage and decay