diff options
Diffstat (limited to '3754/CH27/EX27.6')
-rw-r--r-- | 3754/CH27/EX27.6/27_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3754/CH27/EX27.6/27_6.sce b/3754/CH27/EX27.6/27_6.sce new file mode 100644 index 000000000..68cef3c02 --- /dev/null +++ b/3754/CH27/EX27.6/27_6.sce @@ -0,0 +1,16 @@ +clear//
+
+//Variables
+
+nc = 0.5 //Efficiency
+VCC = 24.0 //Source voltage (in volts)
+Poac = 3.5 //a.c. power output (in watt)
+
+//Calculation
+
+Ptrdc = Poac / nc //dc power (in watt)
+Pcdc = Ptrdc - Poac //Power dissipated as heat (in watt)
+
+//Result
+
+printf("\n Total power within the circuit is %0.3f W.\nThe power Pcdc = %0.3f W is dissipated in the form of heat within the transistor collector region.",Ptrdc,Pcdc)
|