diff options
Diffstat (limited to '3507/CH15/EX15.5/Ex15_5.sce')
-rw-r--r-- | 3507/CH15/EX15.5/Ex15_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3507/CH15/EX15.5/Ex15_5.sce b/3507/CH15/EX15.5/Ex15_5.sce new file mode 100644 index 000000000..31e7b1a4f --- /dev/null +++ b/3507/CH15/EX15.5/Ex15_5.sce @@ -0,0 +1,14 @@ +//chapter15
+//example15.5
+//page328
+
+Pdc=10 // W
+Po=4 // W
+
+eta=(Po/Pdc)*100
+
+// maximum power dissipation in a transistor occurs under zero signal conditions so
+P=Pdc
+
+printf("collector efficiency = %.3f percent \n",eta)
+printf("power rating of transistor = %.3f W \n",P)
|