diff options
Diffstat (limited to '3630/CH19/EX19.1')
-rw-r--r-- | 3630/CH19/EX19.1/Ex19_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3630/CH19/EX19.1/Ex19_1.sce b/3630/CH19/EX19.1/Ex19_1.sce new file mode 100644 index 000000000..1ce3c9006 --- /dev/null +++ b/3630/CH19/EX19.1/Ex19_1.sce @@ -0,0 +1,12 @@ +clc;
+vcc=12;
+Rc=1200;
+Icsat=vcc/Rc;
+hfe=100;
+Ib=Icsat/hfe;
+Rb=47000;
+vbe=0.7;
+Vpk=(Ib*Rb)+vbe;
+disp('V',Vpk,"Vpk=");//The answers vary due to round off error
+
+
|