diff options
Diffstat (limited to '3673/CH16/EX16.15/Ex16_15.sce')
-rw-r--r-- | 3673/CH16/EX16.15/Ex16_15.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3673/CH16/EX16.15/Ex16_15.sce b/3673/CH16/EX16.15/Ex16_15.sce new file mode 100644 index 000000000..b02815c55 --- /dev/null +++ b/3673/CH16/EX16.15/Ex16_15.sce @@ -0,0 +1,13 @@ +//Example 16_15 page no:775
+clc;
+//given
+A=6/5;
+B=17/5;
+C=1/5;
+D=7/5;
+Zl1=sqrt((A*B)/(C*D));
+disp(Zl1,"the parameter Zl1 is (in ohm)");
+Zl2=sqrt((B*D)/(A*C));
+disp(Zl2,"the parameter Zl2 is (in ohm)");
+phi=atanh(sqrt((B*C)/(A*D)));
+disp(phi,"the angle is");
|