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 /2492/CH5/EX5.6/ex5_6.sce | |
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 '2492/CH5/EX5.6/ex5_6.sce')
-rwxr-xr-x | 2492/CH5/EX5.6/ex5_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2492/CH5/EX5.6/ex5_6.sce b/2492/CH5/EX5.6/ex5_6.sce new file mode 100755 index 000000000..07be656fe --- /dev/null +++ b/2492/CH5/EX5.6/ex5_6.sce @@ -0,0 +1,16 @@ +// Exa 5.6
+format('v',5)
+clc;
+clear;
+close;
+// Given data
+// Vo = -R_L*Io = ( (-R_L*Rc)/(Rc+R_L+(1/SC)) )*h_fe*Ib;
+R_C = 4;// in k ohm
+R_L = 2;// in k ohm
+R = R_C+R_L;// in k ohm
+R= R*10^3;// in ohm
+C_L = 10;// in µF
+C_L = C_L * 10^-6;// in F
+// Vo/Ib =Aos/(S+(1/R*C_L));
+f_L = 1/(2*%pi*R*C_L);// in Hz
+disp(f_L,"The lower 3-dB frequency in Hz is");
|