diff options
Diffstat (limited to '3640/CH3/EX3.8/Ex3_8.sce')
-rw-r--r-- | 3640/CH3/EX3.8/Ex3_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3640/CH3/EX3.8/Ex3_8.sce b/3640/CH3/EX3.8/Ex3_8.sce new file mode 100644 index 000000000..4a65edec2 --- /dev/null +++ b/3640/CH3/EX3.8/Ex3_8.sce @@ -0,0 +1,16 @@ +clc
+//example below is an extension of Ex3_7
+//values below from Ex3_7
+V2B=240 //secndary side voltage
+a=10
+//0.8 pf lagging
+V1=2496.44
+V=V1/a //secondary voltage at full load
+mprintf("|V1/a|=%fV\n",V)
+Regulation=(V-V2B)/V2B //ans may vary due to roundoff error
+mprintf("Regulation=(|V1/a|-V2B)/V2B=%f\n",Regulation)
+//0.8 pf leading
+V1=2347.8
+V=V1/a
+mprintf("V at 0.8 pf leading=%fV\n",V)
+mprintf("Regulation=%f\n",(V-V2B)/V2B)
|