diff options
Diffstat (limited to '3673/CH16/EX16.8')
-rw-r--r-- | 3673/CH16/EX16.8/Ex16_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3673/CH16/EX16.8/Ex16_8.sce b/3673/CH16/EX16.8/Ex16_8.sce new file mode 100644 index 000000000..038a646d9 --- /dev/null +++ b/3673/CH16/EX16.8/Ex16_8.sce @@ -0,0 +1,16 @@ +//Example 16_8 page no:759
+clc;
+//given
+Y11=1/2;
+Y21=-1/4;
+Y22=5/8;
+Y12=-1/4;
+//if two identical sections of the network is connected in parallel then Y parameters are calculated as
+Y11=2*Y11;
+Y21=2*Y21;
+Y22=2*Y22;
+Y12=2*Y12;
+disp(Y11,"the parameter Y11 is(in mho)");
+disp(Y21,"the parameter Y21 is(in mho)");
+disp(Y12,"the parameter Y12 is(in mho)");
+disp(Y22,"the parameter Y22 is(in mho)");
|