diff options
Diffstat (limited to '275/CH3/EX3.3.86/Ch3_3_86.sce')
-rwxr-xr-x | 275/CH3/EX3.3.86/Ch3_3_86.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/275/CH3/EX3.3.86/Ch3_3_86.sce b/275/CH3/EX3.3.86/Ch3_3_86.sce new file mode 100755 index 000000000..0d40146ed --- /dev/null +++ b/275/CH3/EX3.3.86/Ch3_3_86.sce @@ -0,0 +1,22 @@ +clc
+disp("Example 3.86")
+printf("\n")
+disp("Find the stability factor & change in Ic for increase in temperature of collector to base bias circuit")
+printf("Given\n")
+//given
+hFE=100
+Rc=2.2*10^3
+Rb=270*10^3
+Icbo1=15*10^-9
+T1=25
+T2=105
+//stability factor
+S=(1+hFE)/(1+((hFE*Rc)/(Rc+Rb)))
+//Change in collector to base reverse saturation current(delIcbo)
+n=(T2-T1)/10
+Icbo2=Icbo1*2^8
+delIcbo=Icbo2-Icbo1
+//Change in Ic for increase in temperature
+delIc=S*delIcbo
+printf("stability factor %f \n",S)
+printf("change in Ic %f ampere\n",delIc)
\ No newline at end of file |