diff options
Diffstat (limited to '3630/CH11/EX11.8/Ex11_8.sce')
-rw-r--r-- | 3630/CH11/EX11.8/Ex11_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3630/CH11/EX11.8/Ex11_8.sce b/3630/CH11/EX11.8/Ex11_8.sce new file mode 100644 index 000000000..7591d6323 --- /dev/null +++ b/3630/CH11/EX11.8/Ex11_8.sce @@ -0,0 +1,10 @@ +clc;
+Vcc=10; //volt
+RL=10; //ohm
+Icsat=Vcc/(2*RL); //Ampere
+Vceoff=Vcc/2; //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
+
+
|