diff options
Diffstat (limited to '3754/CH25/EX25.11/25_11.sce')
-rw-r--r-- | 3754/CH25/EX25.11/25_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH25/EX25.11/25_11.sce b/3754/CH25/EX25.11/25_11.sce new file mode 100644 index 000000000..d58a64ada --- /dev/null +++ b/3754/CH25/EX25.11/25_11.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+hfe = 50.0 //Current gain
+
+//Calculation
+
+hfb = -hfe / (1 + hfe) //hfb
+hfc = -(1 + hfe) //hfc
+
+//Result
+
+printf("\n Value of hfb = %0.2f .\nValue of hfc = %0.3f .",hfb,hfc)
|