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 /671/CH8/EX8.12 | |
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 '671/CH8/EX8.12')
-rwxr-xr-x | 671/CH8/EX8.12/8_12.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/671/CH8/EX8.12/8_12.sce b/671/CH8/EX8.12/8_12.sce new file mode 100755 index 000000000..3090785ef --- /dev/null +++ b/671/CH8/EX8.12/8_12.sce @@ -0,0 +1,28 @@ +P=10000
+v1=2300
+v2=230
+a=v1/v2
+f=50
+r1=3.96
+r2=0.0396
+x1=15.8
+x2=0.158
+
+R=r1+a*a*r2
+X=x1+a*a*x2
+V2=v2*a
+I=P/V2
+theta=acos(0.80)
+V1=V2+I*(R*cos(theta)+X*sin(theta))
+disp(V1)
+VR=(V1-V2)/V2
+disp(VR)
+
+pf=X/sqrt(R*R+X*X)
+theta2=acos(pf)
+Il=I*(cos(theta)-%i*sin(theta))
+Ic=real(Il*tan(theta2))-imag(Il)
+Rating_Cap=V2*Ic
+disp(Rating_Cap)
+V1=V2
+disp(V1)
|