diff options
Diffstat (limited to '3129/CH17/EX17.1/ex17_1.sce')
-rwxr-xr-x | 3129/CH17/EX17.1/ex17_1.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3129/CH17/EX17.1/ex17_1.sce b/3129/CH17/EX17.1/ex17_1.sce new file mode 100755 index 000000000..8872889b0 --- /dev/null +++ b/3129/CH17/EX17.1/ex17_1.sce @@ -0,0 +1,27 @@ +//Finding the Transistor voltage and current with clamping
+//Example 17.1(Page No-766)
+clc
+clear
+//given data
+Vcc=100;//in volts
+Rc=1.5;//in ohms
+Vd1=2.1;//in volts
+Vd2=0.9;//in volts
+Vbe=0.7;// in volts
+Vb=15;//in volts
+Rb=2.5;//in ohms
+B=16;
+
+//part(a)
+I1=(Vb-Vd1-Vbe)/Rb;
+Ic=B*I1;
+printf('(a)Collecter current without clamping:%2.2f A\n',Ic)
+
+//part(b)
+Vce=Vbe+Vd1-Vd2;
+printf(' (b)Clamping voltage:%.1f V\n',Vce)
+
+//part(c)
+IL=(Vcc-Vce)/Rc;
+Ic=B*(I1+IL)/(B+1);
+printf(' (c)Collector current with clampingIc:%2.2f A\n',Ic)
|