summaryrefslogtreecommitdiff
path: root/2444/CH8/EX8.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH8/EX8.14
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 '2444/CH8/EX8.14')
-rwxr-xr-x2444/CH8/EX8.14/ex8_14.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2444/CH8/EX8.14/ex8_14.sce b/2444/CH8/EX8.14/ex8_14.sce
new file mode 100755
index 000000000..a95a5b591
--- /dev/null
+++ b/2444/CH8/EX8.14/ex8_14.sce
@@ -0,0 +1,20 @@
+// Exa 8.14
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+R_E= 1;// in k ohm
+h_ie= R_E;// in k ohm
+h_fe= 100;// unit less
+//V1= I1*[h_ie+(1+h_fe)*h_ie+(1+h_fe)^2*R_E]+I2*R_E (i)
+//V2= I1*(1+h_fe)^2*R_E + I2*R_E (ii)
+Z= [(h_ie+(1+h_fe)*h_ie+(1+h_fe)^2*R_E) R_E;(1+h_fe)^2*R_E R_E]
+Z11= Z(1);// k ohm
+Z21= Z(2);// k ohm
+Z12= Z(3);// k ohm
+Z22= Z(4);// k ohm
+disp(Z11*10^-3,"The value of Z11 in M ohm is : ")
+disp(Z12,"The value of Z12 in M ohm is : ")
+disp(Z21*10^-3,"The value of Z21 in M ohm is : ")
+disp(Z22,"The value of Z22 in M ohm is : ")