blob: d304aae593266482cfc7b9b9a593d22d2c981d18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
clear//
//Variables
VS = 1.5 //Source Voltage (in volts)
RS = 0.4 //Resistance (in ohm)
RL = 2.0 //Load Resistance (in ohm)
//Calculation
RT = RS + RL //Total Resistance (in ohm)
I = VS/ RT //Current (in Ampere)
VT = I * RL //Terminal Voltage (in volts)
PL = I**2 * RL //Power dissipated by load resistance (in watt)
PS = I**2 * RT //Power Supplied by the voltage source (in watt)
eff = PL / PS //Efficiency of the circuit
//Result
printf("\n Terminal Voltage is %0.3f V.\nPower dissipated by 2 ohm resistor is %0.2f W.\nEfficiency of the circuit is %0.2f .",VT,PL,eff)
|