diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2330/CH11/EX11.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2330/CH11/EX11.2')
-rwxr-xr-x | 2330/CH11/EX11.2/ex11_2.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2330/CH11/EX11.2/ex11_2.sce b/2330/CH11/EX11.2/ex11_2.sce new file mode 100755 index 000000000..559e98055 --- /dev/null +++ b/2330/CH11/EX11.2/ex11_2.sce @@ -0,0 +1,21 @@ +// Example 11.2
+format('v',6)
+clc;
+clear;
+close;
+// given data
+h_ie= 3.5*10^3;//in Ω
+h_fe= 120;
+h_re= 1.3*10^-4;
+h_oe= 8.5*10^-6;// in S
+bita= h_fe;// unit less
+// The value of alpha
+alpha= h_fe/(h_fe+1);
+disp(alpha,"The value of alpha is : ")
+// The value of r'e
+r_desh_e= h_ie/h_fe;// in Ω
+r_desh_c= h_fe/h_oe;// in Ω
+disp(r_desh_e,"The value of r''e in Ω is : ")
+// The value of r'c
+r_desh_c= r_desh_c*10^-6;// in Mohm
+disp(r_desh_c,"The value of r''c in MΩ is : ")
|