diff options
Diffstat (limited to '1991/CH11/EX11.4/4.sce')
-rwxr-xr-x | 1991/CH11/EX11.4/4.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1991/CH11/EX11.4/4.sce b/1991/CH11/EX11.4/4.sce new file mode 100755 index 000000000..2c89710d9 --- /dev/null +++ b/1991/CH11/EX11.4/4.sce @@ -0,0 +1,10 @@ +clc
+clear
+//input
+vbe=2.5//voltage across base-emitter
+hfe=75//current gain
+rb=75*10^3 //base current
+//calculation
+rc=5*rb/(vbe*hfe)//collector load resistance
+//output
+printf("the collector load resistance is %2.2e ohm",rc)
|