summaryrefslogtreecommitdiff
path: root/3640/CH1/EX1.7
diff options
context:
space:
mode:
Diffstat (limited to '3640/CH1/EX1.7')
-rw-r--r--3640/CH1/EX1.7/Ex1_7.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3640/CH1/EX1.7/Ex1_7.sce b/3640/CH1/EX1.7/Ex1_7.sce
new file mode 100644
index 000000000..12fff5c78
--- /dev/null
+++ b/3640/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,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)
+
+
+
+