diff options
Diffstat (limited to '2594/CH7/EX7.10/Ex7_10.sce')
-rwxr-xr-x | 2594/CH7/EX7.10/Ex7_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2594/CH7/EX7.10/Ex7_10.sce b/2594/CH7/EX7.10/Ex7_10.sce new file mode 100755 index 000000000..0970df7d8 --- /dev/null +++ b/2594/CH7/EX7.10/Ex7_10.sce @@ -0,0 +1,11 @@ +clc
+ro=500*10^3
+disp("ro = "+string(ro)+" ohm") //initializiation the value of output resistance .
+Vce1=7
+disp("Vce1 = "+string(Vce1)+" V") //initializiation the initial value of collector emitter voltage .
+Vce2=1
+disp("Vce2 = "+string(Vce2)+" V") //initializiation the final value of collector emitter voltage .
+Vce=6
+disp("change in the collector-emitter voltage,Vce1-Vce2 = "+string(Vce)+" V") //calculation.
+Ic=(Vce/ro)
+disp("change in the collector current,Ic=(Vce/ro))="+string(Ic)+" A")//calculation
|