summaryrefslogtreecommitdiff
path: root/3574/CH3/EX3.3/EX3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH3/EX3.3/EX3_3.sce')
-rw-r--r--3574/CH3/EX3.3/EX3_3.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/3574/CH3/EX3.3/EX3_3.sce b/3574/CH3/EX3.3/EX3_3.sce
new file mode 100644
index 000000000..1558af4ca
--- /dev/null
+++ b/3574/CH3/EX3.3/EX3_3.sce
@@ -0,0 +1,28 @@
+// Example 3.3
+// Computation of (a) Buck boost transformer parameters
+// (b) Repeating the same assuming utilization voltage as 246V
+// Page No. 102
+
+clc;
+clear;
+close;
+
+// Given data
+S=10000; // Supply voltage
+VLS=212; // Voltage at the low side
+VHSNEW=246; // New voltage at the high side
+a1=1.100;
+a11=1.0667;
+
+// (a) Buck boost transformer parameters
+VHS=a1*VLS;
+
+// (b) Repeating the same assuming utilization voltage as 246V
+
+VLSNEW=VHSNEW/a11;
+
+//Display result on command window
+
+printf("\n Actual output voltage supplied to the air conditioner is = %0.1f V ",VHS);
+printf("\n Actual output voltage assuming utilization voltage as 246 V is = %0.1f V ",VLSNEW);
+