diff options
Diffstat (limited to '2078/CH12')
-rwxr-xr-x | 2078/CH12/EX12.1/Example12_1.sce | 10 | ||||
-rwxr-xr-x | 2078/CH12/EX12.2/Example12_2.sce | 21 |
2 files changed, 31 insertions, 0 deletions
diff --git a/2078/CH12/EX12.1/Example12_1.sce b/2078/CH12/EX12.1/Example12_1.sce new file mode 100755 index 000000000..b7aa457fc --- /dev/null +++ b/2078/CH12/EX12.1/Example12_1.sce @@ -0,0 +1,10 @@ +//Exa 12.1
+clc;
+clear;
+close;
+format('v',6);
+//Given data :
+f=50;//Supply frequency in Hz
+C=4.5*10^-6;//in Farad
+Omega_L=1/3/2/%pi/f/C;//in ohm
+disp(Omega_L,"Reactance of coil (ohm) :");
diff --git a/2078/CH12/EX12.2/Example12_2.sce b/2078/CH12/EX12.2/Example12_2.sce new file mode 100755 index 000000000..98dac594a --- /dev/null +++ b/2078/CH12/EX12.2/Example12_2.sce @@ -0,0 +1,21 @@ +//Exa 12.2
+clc;
+clear;
+close;
+format('v',5);
+//Given data :
+V=132*1000;//V
+f=50;//Hz
+r=10/1000;//m
+d1=4;//m
+d2=4;//m
+d3=d1+d2;//m
+epsilon_o=8.854*10^-12;//constant
+l_tl=192*1000;//length of transmission line in m
+C=2*%pi*epsilon_o/log((d1*d2*d3)^(1/3)/r)*l_tl;//in Farad
+L=1/3/(2*%pi*f)^2/C;//H
+disp(L,"Necessary Inductance of peterson coil in H : ");
+VP=V/sqrt(3);//V
+IL=VP/(2*%pi*f)/L;//A
+Rating=VP*IL/1000;//kVA
+disp(Rating/1000,"Rating of supressor coil in MVA :");
|