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 /2078/CH5/EX5.14/Example5_14.sce | |
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 '2078/CH5/EX5.14/Example5_14.sce')
-rwxr-xr-x | 2078/CH5/EX5.14/Example5_14.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2078/CH5/EX5.14/Example5_14.sce b/2078/CH5/EX5.14/Example5_14.sce new file mode 100755 index 000000000..b58e35487 --- /dev/null +++ b/2078/CH5/EX5.14/Example5_14.sce @@ -0,0 +1,22 @@ +//Exa 5.14
+clc;
+clear;
+close;
+//Given data :
+f=50;//Hz
+l=30;//km
+Z=40+%i*125;//ohm
+Y=10^-3;//mho
+P=50*10^6;//W
+VRL=220*10^3;//Volt
+VR=VRL/sqrt(3);//Volt
+pf=0.8;//power factor
+cos_fi_r=pf;
+sin_fi_r=sqrt(1-cos_fi_r^2);
+IR=P/(sqrt(3)*VRL*pf);//A
+IR=IR*(cos_fi_r-%i*sin_fi_r);//A
+ICR=1/2*%i*Y*VR;//A
+IL=IR+ICR;//A
+VS=VR+IL*Z;//Volt
+VSL=sqrt(3)*abs(VS);//Volt
+disp(VSL/1000,"Sending end line to line voltage(kV) :");
|