summaryrefslogtreecommitdiff
path: root/3754/CH5/EX5.12/5_12.sce
blob: b7e576708de864ae532728801337e374865039ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clear//

//Variables

VTH = 20.0 * 10**-3              //Thevenin's Voltage (in volts)
RTH = 300.0                      //Thevenin's Resistance (in ohm) 
RL = 300.0                       //Load Resistance (in ohm)

//Calculation

PL = (VTH/(RTH + RL))**2 * RL    //Power across load resistance (in watt)   

//Result

printf("\n The value of power transmitted to the receiver is  %0.2f  micro-watt.",PL*10**6)