Answer:
Explanation:
f = 50.0 Hz, L = 0.650 H, π = 3.14
C = 4.80 μF, R = 301 Ω resistor. V = 120volts
XL = wL = 2πfL
= 2×3.14×50* 0.650
= 204.1 Ohm
Xc= 1/wC
Xc = 1/2πfC
Xc = 1/2×3.14×50×4.80μF
= 1/0.0015072
= 663.48Ohms
1. Total impedance, Z = sqrt (R^2 + (Xc-XL)^2)= √ 301^2+ (663.48Ohms - 204.1 Ohm)^2
√ 90601 + (459.38)^2
√ 90601+211029.98
√ 301630.9844
= 549.209
Z = 549.21Ohms
2. I=V/Z = 120/ 549.21Ohms =0.218Ampere
3. P=V×I = 120* 0.218 = 26.16Watt
Note that
I rms = Vrms/Xc
= 120/663.48Ohms
= 0.18086A
4. I(max) = I(rms) × √2
= 0.18086A × 1.4142
= 0.2557
= 0.256A
5. V=I(max) * XL
= 0.256A ×204.1
=52.2496
= 52.250volts
6. V=I(max) × Xc
= 0.256A × 663.48Ohms
= 169.85volts
7. Xc=XL
1/2πfC = 2πfL
1/2πfC = 2πf× 0.650
1/2×3.14×f×4.80μF = 2×3.14×f×0.650
1/6.28×f×4.8×10^-6 = 4.082f
1/0.000030144× f = 4.082×f
1 = 0.000030144×f×4.082×f
1 = 0.000123f^2
f^2 = 1/0.000123048
f^2 = 8126.922
f =√8126.922
f = 90.14 Hz
Answer:You are a network engineer. While moving a handheld wireless LAN device, you notice that the signal strength increases when the device is moved from a ...
Explanation:
Answer:
778.4°C
Explanation:
I = 700
R = 6x10⁻⁴
we first calculate the rate of heat that is being transferred by the current
q = I²R
q = 700²(6x10⁻⁴)
= 490000x0.0006
= 294 W/M
we calculate the surface temperature
Ts = T∞ + 
Ts = 


The surface temperature is therefore 778.4°C if the cable is bare
Answer:
See explanation
Explanation:
The magnetic force is
F = qvB sin θ
We see that sin θ = 1, since the angle between the velocity and the direction of the field is 90º. Entering the other given quantities yields
F
=
(
20
×
10
−
9
C
)
(
10
m/s
)
(
5
×
10
−
5
T
)
=
1
×
10
−
11
(
C
⋅
m/s
)
(
N
C
⋅
m/s
)
=
1
×
10
−
11
N
Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information