diff options
Diffstat (limited to '620/CH25/EX25.4/example25_4.sce')
-rw-r--r-- | 620/CH25/EX25.4/example25_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/620/CH25/EX25.4/example25_4.sce b/620/CH25/EX25.4/example25_4.sce new file mode 100644 index 000000000..c6704dbb6 --- /dev/null +++ b/620/CH25/EX25.4/example25_4.sce @@ -0,0 +1,12 @@ +z1=4+%i*2;
+z2=6-%i*4;
+zl=3.2+%i*0.2;
+v1=24;
+v2=36*(cos(40*%pi/180)+%i*sin(40*%pi/180));
+in=v1/z1+v2/z2;
+zn=z1*z2/(z1+z2);
+il=in*zn/(zn+zl);
+disp("the load current (in A) has a magnitude of"); disp(sqrt(real(il)^2)+imag(il)^2);
+disp("with a phase angle (in deg) of"); disp((atan(imag(il)/real(il)))*180/%pi);
+p=(real(il)^2+imag(il)^2)*real(zl);
+disp("the load power (in W) is"); disp(p);
\ No newline at end of file |