summaryrefslogtreecommitdiff
path: root/509/CH15/EX15.3/15_3.sci
blob: 6029c517d9dc599928321c42913c9c76c3c05bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Chapter 15 Example 3//
clc
clear
//advance angle=b,extinction angle=c//
b=20;// in degrees//
c=10;
//dc voltage input to inverter = vdi, ac output voltage of inverter =vdoi//
// vdi=vdoi*(cosd(b)+cosd(c))/2 interchanging variables we get//
vd=500;//in kV//
vdoi=2*vd/(cosd(b)+cosd(c));
printf("\n AC Output voltage of the inverter = %.2f kV\n",vdoi);
// ac voltage supply =em//
em=%pi*vdoi/(3*sqrt(3));
printf("\n AC Output voltage = %.2f kV\n",em);