blob: a78b7e63b815035c6c464cc29b522a8a5f3ac4e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear//
//Variables
RL = 8.0 //Load resistance (in ohm)
a = 10.0 //Turns ratio
ICQ = 500.0 * 10**-3 //Collector current (in Ampere)
//Calculation
R1L = a**2 * RL //Effective load (in ohm)
Poac = 1.0/2* ICQ**2 * R1L //Maximum power delieverd (in watt)
//Result
printf("\n The maximum power delievered to load is %0.3f W.",Poac)
|