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/CH6/EX6.3/Example6_3.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/CH6/EX6.3/Example6_3.sce')
-rwxr-xr-x | 2078/CH6/EX6.3/Example6_3.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2078/CH6/EX6.3/Example6_3.sce b/2078/CH6/EX6.3/Example6_3.sce new file mode 100755 index 000000000..0dd4846fc --- /dev/null +++ b/2078/CH6/EX6.3/Example6_3.sce @@ -0,0 +1,23 @@ +//Exa 6.3
+clc;
+clear;
+close;
+format('v',8);
+//Given data :
+VRL=220;//kV
+VR=VRL/sqrt(3);//V
+P=10*10^6;//VA
+Z=1+%i*8;//ohm(in %)
+Zse=Z/100*VRL^2/100;//ohm/phase
+A=0.9*expm(%i*0.6*%pi/180);//Auxiliary constant
+D=A;//Auxiliary constant
+B=153.2*expm(%i*84.6*%pi/180);//Auxiliary constant
+C=0.0012*expm(%i*90*%pi/180);//Auxiliary constant
+A0=A+C*Zse;//constant
+B0=B+D*Zse;//ohm//constant
+C0=C;//mho or S//constant
+D0=A;//constant
+disp("Constant A0, magnitude is "+string(abs(A0))+" and angle in degree is "+string(atand(imag(A0),real(A0))));
+disp("Constant B0(ohm), magnitude is "+string(abs(B0))+" and angle in degree is "+string(atand(imag(B0),real(B0))));
+disp("Constant C0(S), magnitude is "+string(abs(C0))+" and angle in degree is "+string(atand(imag(C0),real(C0))));
+disp("Constant D0, magnitude is "+string(abs(D0))+" and angle in degree is "+string(atand(imag(D0),real(D0))));
|