blob: a6b8148038067330188092fa283a1dce88a4ab16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear
//Given
Ev=120.0
P=1000 //W
Ev1=240
//Calculation
Iv=P/Ev
I0=sqrt(2)*Iv
R=Ev/Iv
P=Ev1**2/R
//Result
printf("\n Resistance is %0.3f ohm \nPeak current is %0.3f W",R,P)
|