diff options
Diffstat (limited to '620/CH25/EX25.2/example25_2.sce')
-rw-r--r-- | 620/CH25/EX25.2/example25_2.sce | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/620/CH25/EX25.2/example25_2.sce b/620/CH25/EX25.2/example25_2.sce new file mode 100644 index 000000000..82a129523 --- /dev/null +++ b/620/CH25/EX25.2/example25_2.sce @@ -0,0 +1,6 @@ +r1=3;
+r2=4;
+r=sqrt(r1^2+r2^2);
+theta=atan(r1/r2)*180/%pi;
+disp("in polar form the circuit impedance has a magnitude (in Ω) of"); disp(r);
+disp("with a phase angle (in derees) of"); disp(theta);
\ No newline at end of file |