diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3574/CH3/EX3.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3574/CH3/EX3.3')
-rw-r--r-- | 3574/CH3/EX3.3/EX3_3.png | bin | 0 -> 108035 bytes | |||
-rw-r--r-- | 3574/CH3/EX3.3/EX3_3.sce | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/3574/CH3/EX3.3/EX3_3.png b/3574/CH3/EX3.3/EX3_3.png Binary files differnew file mode 100644 index 000000000..0ce7171a5 --- /dev/null +++ b/3574/CH3/EX3.3/EX3_3.png 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);
+
|