summaryrefslogtreecommitdiff
path: root/3809/CH7/EX7.3/EX7_3.sce
blob: 691ed3d5f0d99bb45a34eaaec432d362f4a5c63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//Chapter 7, Example 7.3

clc
//Initialisation
s=2000                                  //apparent power
p=0.75                              //power factor
v=240                                //voltage
pi=3.14                               //pi
f=50                                  //frequency

//Calculation

ap=s*p                                  //active power
phi=sqrt(1-(p**2))                      //phase angle in radians
q=s*phi                            //reactive power in var
i=s/v                                //current in ampere
xc=-v**2/q                             //capacitive reactance in ohm
c=1/(xc*2*pi*f)                         //capacitance in farad
s1=ap                                    //new apparent power 
i2=s1/v                                  //new current in ampere

//Results
printf("(a) Apparent Power, S = %d VA\n",s1)
printf("(b) Active Power, P = %d W\n",ap)
printf("(c) Reactive Power, Q = %d var\n",q)
printf("(d) Current, I = %.2f A\n",i2)