summaryrefslogtreecommitdiff
path: root/215/CH17/EX17.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /215/CH17/EX17.10
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '215/CH17/EX17.10')
-rwxr-xr-x215/CH17/EX17.10/ex17_10.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/215/CH17/EX17.10/ex17_10.sce b/215/CH17/EX17.10/ex17_10.sce
new file mode 100755
index 000000000..9f1c1747c
--- /dev/null
+++ b/215/CH17/EX17.10/ex17_10.sce
@@ -0,0 +1,26 @@
+clc
+//Example 17.10
+//From figure 17.32
+disp('Consider Network A')
+//Writing the mesh equations
+disp('V1=12*I1+10*I2')
+disp('V2=10*I1+14*I2')
+//Arranging in the standard form
+//V1=t11*V2-t12*I2
+//I1=t21*V2-t22*I2
+//Therefore t parameters of Network A is
+t11A=1.2;t12A=6.8;t21A=0.1;t22A=1.4;
+disp('Consider Network B')
+//Writing the mesh equations
+disp('V1=24*I1+20*I2')
+disp('V2=20*I1+28*I2')
+//Arranging in the standard form
+//V1=t11*V2-t12*I2
+//I1=t21*V2-t22*I2
+//Therefore t parameters of Network B is
+t11B=1.2;t12B=13.6;t21B=0.05;t22B=1.4;
+tA=[1.2 6.8;0.1 1.4]
+tB=[1.2 13.6;0.05 1.4]
+disp('t parameters of cascaded network is t=tA*tB')
+t=tA*tB
+disp(t) \ No newline at end of file