summaryrefslogtreecommitdiff
path: root/3809/CH7/EX7.1/EX7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3809/CH7/EX7.1/EX7_1.sce')
-rw-r--r--3809/CH7/EX7.1/EX7_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3809/CH7/EX7.1/EX7_1.sce b/3809/CH7/EX7.1/EX7_1.sce
new file mode 100644
index 000000000..a79df19fb
--- /dev/null
+++ b/3809/CH7/EX7.1/EX7_1.sce
@@ -0,0 +1,18 @@
+//Chapter 7, Example 7.1
+
+clc
+//Initialisation'
+v=50 //voltage
+i=5 //current
+phi=30 //angle in degree
+pi=3.14 //pi
+
+//Calculation
+s=v*i //apparent power
+p=cos(phi*3.14/180) //power factor
+ap=s*p //active power
+
+//Results
+printf("(a) Apparent Power, S = %d VA\n",s)
+printf("(b) Power Factor = %.3f Degree\n",p) //wrong answer in textbook
+printf("(c) Active Power, P = %.1f W\n",ap) //wrong answer in textbook