diff options
Diffstat (limited to '2882/CH8/EX8.1')
-rwxr-xr-x | 2882/CH8/EX8.1/Ex8_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2882/CH8/EX8.1/Ex8_1.sce b/2882/CH8/EX8.1/Ex8_1.sce new file mode 100755 index 000000000..aea1703ce --- /dev/null +++ b/2882/CH8/EX8.1/Ex8_1.sce @@ -0,0 +1,14 @@ +//Tested on Windows 7 Ultimate 32-bit
+//Chapter 8 Power Amplifiers Pg no. 267
+clear;
+clc;
+
+//Given Data
+
+VCC=15;//battery voltage in volts
+P_OUT=5;//output power in watts
+
+//Solution
+
+IC_MAX=P_OUT/VCC;//maximum collector current in amperes
+printf("Maximum collector current IC = %d mA",IC_MAX*10^3);
|