D
Don
Guest
Ricky wrote:
Thanks guys. You helped me put it all together. If we keep 250VAC
constant then V^2 (eg 250VAC^2) is a constant. Initially, my mind
misrepresents the V^2 constant as a slope in a linear equation.
But V^2 is not a slope because P=V^2/R is not linear. The
multiplicative inverse term, 1/R, makes it non-linear.
Here\'s a plot: <https://crcomp.net/misc/pr.png> [1]. As expected, it
looks similar to a 1/x plot.
This (so far unanswered) question was previously asked by me:
Does the -3 dB half power point play a role with kW (eg not kWh)?
Ordinarily the half power point pertains to bandwidth. It\'s a little
eccentric to apply it to a constant frequency. But it can be done. By
inspection, the half power point of 3000 W yields 40 Ohms.
Note.
[1] octave code:
R=linspace(10,50,40);
P=250^2 ./ R;
plot(R, P);
xlabel(\'R (Ohms)\');
ylabel(\'P (Watts)\');
Danke,
--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.
TTman wrote:
Ed wrote:
The communication hasn\'t worked so far, perhaps it\'s been a bit
unclear. I\'ll try a bit differently. The key point is that doubling
the resistance does NOT halve the power.
Take the resistance of your heater (HR), which is about 20.8 ohms,
and figure what voltage needs to be applied to it to run it at 1500
watts. Here\'s the math:
Solve for heater resistance (HR):
P=E^2/HR so HR=E^2/P so HR=250*250/3000 so HR=62500/3000 = 20.83
Now what voltage must be applied to HR to equal 1500 watts?
1500 = E*E/20.83 so 20.83 * 1500 = E^E so 31250 = E*E so
E = sqroot 31250 so E = 176.77volts
Ok, once you know that voltage you can solve for the rest.
We need to add a series resistance (AR) to drop the voltage
across HR from 250 to 176.77volts
Compute the current through the series string of HR plus AR
Solve for I through HR at 1500 watts:
P=E*I so 1500 = 176.77 * I so I = 1500/176.77 = 8.485amps
The total voltage (250) minus VHR (176.77) equals VAR, the
voltage across the (AddedResistance) AR
250-176.77 = 73.223volts
Solve for power dissipated in AR
P=I*E= 8.486*73.223=621.32 watts in AR
I hope this makes it a bit clearer.
Too complicated...HR= 20 Ohms. Add another resistor in series = 20 Ohms
making Rt - 40 Ohms.
If I apply 250 V across 40 Ohms, I get 125V across each resistor.
and... you get half the current, so each resistor will dissipate a quarter
of the original power. The total power will be half of the original power,
but if I understand your limitations on the design, the series resistor can
not be used to heat the pot.
I\'m not going to continue to beat you over the heat to get you to pay
attentn to the equations. But here are equations for power, one more time.
P = E * I
P = E^2 / R
P = I^2 * R
Apply them to the appropriate devices, rather than just saying, \"twice the
resistance, half the power\". Also, try solving for the actual current and
the voltage on each device. This isn\'t hard, but sometimes it takes a bit
of work to get used to it.
Thanks guys. You helped me put it all together. If we keep 250VAC
constant then V^2 (eg 250VAC^2) is a constant. Initially, my mind
misrepresents the V^2 constant as a slope in a linear equation.
But V^2 is not a slope because P=V^2/R is not linear. The
multiplicative inverse term, 1/R, makes it non-linear.
Here\'s a plot: <https://crcomp.net/misc/pr.png> [1]. As expected, it
looks similar to a 1/x plot.
This (so far unanswered) question was previously asked by me:
Does the -3 dB half power point play a role with kW (eg not kWh)?
Ordinarily the half power point pertains to bandwidth. It\'s a little
eccentric to apply it to a constant frequency. But it can be done. By
inspection, the half power point of 3000 W yields 40 Ohms.
Note.
[1] octave code:
R=linspace(10,50,40);
P=250^2 ./ R;
plot(R, P);
xlabel(\'R (Ohms)\');
ylabel(\'P (Watts)\');
Danke,
--
Don, KB7RPU, https://www.qsl.net/kb7rpu
There was a young lady named Bright Whose speed was far faster than light;
She set out one day In a relative way And returned on the previous night.