summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.5/ex5_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2498/CH5/EX5.5/ex5_5.sce
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 '2498/CH5/EX5.5/ex5_5.sce')
-rwxr-xr-x2498/CH5/EX5.5/ex5_5.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2498/CH5/EX5.5/ex5_5.sce b/2498/CH5/EX5.5/ex5_5.sce
new file mode 100755
index 000000000..7de2fafe2
--- /dev/null
+++ b/2498/CH5/EX5.5/ex5_5.sce
@@ -0,0 +1,22 @@
+// Exa 5.5
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R1 = 3;// in ohm
+R2 = 6;// in ohm
+R3 = 2;// in ohm
+// V1 = (R1*I1)+ (R2*(I1+I2)) = ((R1+R2)*I1)+(R2*I2) (i)
+// V2 = (R3*I2) + (R2*(I1+I2)) = (R2*I1) + ((R1+R3)*I2) (ii)
+// Standard h-parameter equation
+//V1= h11*I1 +h12*I2 and V2= h21*I1 + h22*I2
+// Comparing eq (i) and (ii) with standard equaation, we get
+h11= R1+R2;
+disp(h11,"The value of h11 is");
+h12= R2;
+disp(h12,"The value of h12 is");
+h21= R2;
+disp(h21,"The value of h21 is");
+h22= R2+R3;
+disp(h22,"The value of h22 is");