blob: 12fff5c7875cf2b3a1d2672cc1ca2c67d244242e (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
Vnl=27.3 //no load voltage in volts
Vfl1=24 //full load voltage at power factor 1 in volts
mprintf("(Vnl-Vfl/Vfl)=%f\n",(Vnl-Vfl1)/Vfl1) //ans may vary due to roundoff error
Vfl2=22.1 //full load voltage at power factor 0.7 in volts
mprintf("Voltage Regulation=%f",(Vnl-Vfl2)/Vfl1)
|