blob: 2737d317742288164788cf0376bcb32fb540e715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc,clear
printf('Example 5.3\n\n')
//full load
V_L_FL=1100
V_ph_FL=V_L_FL/sqrt(3)
//no load
V_L_NL=1266
E_line=V_L_NL
E_ph=E_line/sqrt(3)
regulation=100*(E_ph-V_ph_FL)/V_ph_FL
printf('Regulation at full load is %.2f percent',regulation)
|