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.5 | |
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.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 |