blob: aea1703ce0c8242310ba7a5d2000f38201d98988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
|