diff options
Diffstat (limited to '3673/CH16/EX16.a.10/Example_a_16_10.sce')
-rw-r--r-- | 3673/CH16/EX16.a.10/Example_a_16_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3673/CH16/EX16.a.10/Example_a_16_10.sce b/3673/CH16/EX16.a.10/Example_a_16_10.sce new file mode 100644 index 000000000..ac5711c7a --- /dev/null +++ b/3673/CH16/EX16.a.10/Example_a_16_10.sce @@ -0,0 +1,15 @@ +//Example_a_16_10 page no:787
+clc;
+Za=1;
+Zb=3;
+Zc=5;
+Zd=2;
+//calculating the Z values
+Z11=((Za+Zb)*(Zd+Zc))/(Za+Zb+Zc+Zd);
+Z21=((Zb*Zc)-(Za*Zd))/(Za+Zb+Zc+Zd);
+Z12=Z21;
+Z22=((Za+Zc)*(Zd+Zb))/(Za+Zb+Zc+Zd);
+disp(Z11,"the value of Z11 is (in ohm)");
+disp(Z21,"the value of Z21 is (in ohm)");
+disp(Z12,"the value of Z12 is (in ohm)");
+disp(Z22,"the value of Z22 is (in ohm)");
|