diff options
Diffstat (limited to '671/CH11/EX11.8/11_8.sce')
-rwxr-xr-x | 671/CH11/EX11.8/11_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/671/CH11/EX11.8/11_8.sce b/671/CH11/EX11.8/11_8.sce new file mode 100755 index 000000000..f3ca3bf28 --- /dev/null +++ b/671/CH11/EX11.8/11_8.sce @@ -0,0 +1,15 @@ +P=12E6
+Q=6E6
+V=22000
+Xs=8
+S=P+%i*Q
+theta=atan(Q/P)
+disp(theta/%pi*180)
+
+Ia=norm(S)/sqrt(3)/V
+Ef=V/sqrt(3)+%i*Xs*Ia*exp(-%i*theta)
+delta=atan(imag(Ef)/real(Ef))
+disp(delta/%pi*180)
+
+emf=norm(Ef)*sqrt(3)
+disp(emf)
|