diff options
Diffstat (limited to '620/CH25/EX25.17')
-rw-r--r-- | 620/CH25/EX25.17/example25_17.sce | 25 | ||||
-rw-r--r-- | 620/CH25/EX25.17/example25_17.txt | bin | 0 -> 826 bytes |
2 files changed, 25 insertions, 0 deletions
diff --git a/620/CH25/EX25.17/example25_17.sce b/620/CH25/EX25.17/example25_17.sce new file mode 100644 index 000000000..f4d93cadc --- /dev/null +++ b/620/CH25/EX25.17/example25_17.sce @@ -0,0 +1,25 @@ +m_i=58;
+deg_i=35*%pi/180;
+i=m_i*(cos(deg_i)+%i*sin(deg_i));
+m_i1=35;
+deg_i1=-20*%pi/180;
+i1=m_i1*(cos(deg_i1)+%i*sin(deg_i1));
+m_v=120;
+deg_v=0;
+disp("Part a");
+i2=i-i1;
+a=real(i2);
+b=imag(i2);
+m_i2=sqrt(a^2+b^2);
+deg_i2=atan(b/a)*180/%pi;
+disp("the current (in mA) in the other branch has a magnitude of"); disp(m_i2);
+disp("with a phase angle(in degrees) of"); disp(deg_i2);
+disp("Part b");
+m_z=m_v/m_i;
+deg_z=deg_v-deg_i;
+disp("the total impedance (in kΩ) of the circuit has a magnitude of"); disp(m_z);
+disp("with a phase angle (in degrees) of"); disp(deg_z);
+disp("Part c");
+z=m_z*(cos(deg_z)+%i*sin(deg_z));
+p=(m_i*10^(-3))^2*real(z)*10^3;
+disp("the total true power dissipated (in W)"); disp(p);
\ No newline at end of file diff --git a/620/CH25/EX25.17/example25_17.txt b/620/CH25/EX25.17/example25_17.txt Binary files differnew file mode 100644 index 000000000..f1e45a4db --- /dev/null +++ b/620/CH25/EX25.17/example25_17.txt |