diff options
Diffstat (limited to '3630/CH7/EX7.7/Ex7_7.sce')
-rw-r--r-- | 3630/CH7/EX7.7/Ex7_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3630/CH7/EX7.7/Ex7_7.sce b/3630/CH7/EX7.7/Ex7_7.sce new file mode 100644 index 000000000..2244e527e --- /dev/null +++ b/3630/CH7/EX7.7/Ex7_7.sce @@ -0,0 +1,14 @@ +clc;
+Vcc=10; //volt
+R1=18000; //ohm
+R2=4700; //Ohm
+Vb=(R2/(R1+R2))*Vcc; //volt //voltage divider rule
+Ve=Vb-0.7; //volt
+Re=1100; //ohm
+Icq=Ve/Re; //Ampere//assumption Icq=Ie
+Rc=3000; //Ohm
+Re=1100; //Ohm
+Vceq=Vcc-Icq*(Rc+Re); //Volt
+disp('A',Icq,"Icq=");//The answers vary due to round off error
+disp('V',Vceq,"Vceq=");//The answers vary due to round off error
+
|