diff options
Diffstat (limited to '3630/CH7/EX7.11')
-rw-r--r-- | 3630/CH7/EX7.11/Ex7_11.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3630/CH7/EX7.11/Ex7_11.sce b/3630/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..aab2cae11 --- /dev/null +++ b/3630/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,8 @@ +clc;
+Vcc=12; //volt
+Rc=750; //ohm
+Re=1500;//ohm
+Icsat=(2*Vcc)/(Rc+Re); //Ampere
+Vceoff=2*Vcc; //volt
+disp('mA',Icsat*1000,"Icsat=");//The answers vary due to round off error
+disp('V',Vceoff,"Vceoff=");//The answers vary due to round off error
|