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 /1055/CH4/EX4.8/ch4_8.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 '1055/CH4/EX4.8/ch4_8.sce')
-rwxr-xr-x | 1055/CH4/EX4.8/ch4_8.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1055/CH4/EX4.8/ch4_8.sce b/1055/CH4/EX4.8/ch4_8.sce new file mode 100755 index 000000000..5b284b701 --- /dev/null +++ b/1055/CH4/EX4.8/ch4_8.sce @@ -0,0 +1,23 @@ +//To determine the ABCD parameters of Line
+clear
+clc;
+yl=(0.2714+ %i*1.169)*120*(10^-3);
+Ir=40*1000/(sqrt(3)*132*.8)
+A=cosh(yl);
+phase_A=atand(imag(A)/real(A));//Phase angle of A
+IR=Ir*(cosd(-36.8)+ %i*sind(-36.8))
+Vr=132*1000/sqrt(3);
+Zc=380*(cosd(-13.06)+ %i*sind(-13.06));
+B=Zc*sinh(yl);
+phase_B=atand(imag(B)/real(B));//Phase angle of B
+Vs=(A*Vr+B*IR);
+f=abs(B);
+d=abs(Vs);
+C=sinh(yl)/Zc;
+phase_C=atand(imag(C)/real(C));//Phase angle of C
+D=cosh(yl);
+phase_D=atand(imag(D)/real(D));//Phase angle of D
+mprintf("A=%.2f at an angle of %.2f \n",abs(A),phase_A)
+mprintf("B=%.1f at an angle of %.0f \n",abs(B),phase_B)
+mprintf("C=%.2f at an angle of %.2f \n",abs(C),phase_C)
+mprintf("D=%.2f at an angle of %.2f \n",abs(D),phase_D)
|