diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1802/CH10/EX10.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1802/CH10/EX10.6')
-rwxr-xr-x | 1802/CH10/EX10.6/Exa10_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1802/CH10/EX10.6/Exa10_6.sce b/1802/CH10/EX10.6/Exa10_6.sce new file mode 100755 index 000000000..e07b54d84 --- /dev/null +++ b/1802/CH10/EX10.6/Exa10_6.sce @@ -0,0 +1,19 @@ +//Exa 10.6
+clc;
+clear;
+close;
+//Given Data :
+format('v',7);
+Im=30;//in Ampere
+f=50;//in Hz
+V=200;//in volts
+cosfi_1=0.7;//powerfactor
+Ia=Im*cosfi_1;//in Ampere
+tanfi_1=tand(acosd(cosfi_1));//unitless
+Ir1=Ia*tanfi_1;//in Ampere
+cosfi_2=0.85;//powerfactor
+tanfi_2=tand(acosd(cosfi_2));//unitless
+Ir2=Ia*tanfi_2;//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 |