diff options
Diffstat (limited to '1802/CH10/EX10.5')
-rwxr-xr-x | 1802/CH10/EX10.5/Exa10_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1802/CH10/EX10.5/Exa10_5.sce b/1802/CH10/EX10.5/Exa10_5.sce new file mode 100755 index 000000000..19e5f46e3 --- /dev/null +++ b/1802/CH10/EX10.5/Exa10_5.sce @@ -0,0 +1,18 @@ +//Exa 10.5
+clc;
+clear;
+close;
+//Given Data :
+format('v',6);
+Im=30;//in Ampere
+f=50;//in Hz
+V=200;//in volts
+cosfi_1=0.8;//powerfactor
+Ia=Im*cosfi_1;//in Ampere
+cosfi_2=1;//powerfactor
+Ir2=0;//in A(as cosfi_2=1)
+tanfi_1=tand(acosd(cosfi_1));//unitless
+Ir1=Ia*tanfi_1;//in Ampere
+Ic=Ir1-Ir2;//in Ampere
+C=Ic/(2*%pi*f*V);//in farads
+disp(C*10^6,"Capacity of condenser(in uF) :");
\ No newline at end of file |