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 /1823/CH5/EX5.11 | |
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 '1823/CH5/EX5.11')
-rwxr-xr-x | 1823/CH5/EX5.11/SolEx5_11.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1823/CH5/EX5.11/SolEx5_11.sce b/1823/CH5/EX5.11/SolEx5_11.sce new file mode 100755 index 000000000..bba036030 --- /dev/null +++ b/1823/CH5/EX5.11/SolEx5_11.sce @@ -0,0 +1,20 @@ +//(a) Find the exact change in ICQ. (b) Predict the new value of ICQ using stability-factor analysis.
+//Example 5.11 page no 148
+clear
+clc
+Vbb=6
+Vbeq1=0.7
+Icbo1=0.5
+Rb=50
+Re=1
+B=75//Beta
+Icq1=((Vbb-Vbeq1+Icbo1*(0.5*51*10^-3))/((Rb*10^3/B)+Re*10^3))*10^3
+printf("\n The value of Icq1=%0.3f mA" ,Icq1)
+Icbo2=(Icbo1*10^-6*2^2)*10^6
+printf("\n The value of Icbo=%0.3f mA" ,Icbo2)
+Vbeq=(-2*10^-3)*20
+printf("\n The value of Vbeq=%0.3f V" ,Vbeq)
+Vbeq2=Vbeq1+Vbeq
+printf("\n The value of Vbeq2=%0.3f V" ,Vbeq2)
+Icq2=((Vbb-Vbeq2+Icbo2*(2*51*10^-3))/((Rb*10^3/B)+Re*10^3))*10^3
+printf("\n The value of Icq2=%0.3f mA" ,Icq2)
|