summaryrefslogtreecommitdiff
path: root/509/CH15/EX15.3
diff options
context:
space:
mode:
Diffstat (limited to '509/CH15/EX15.3')
-rw-r--r--509/CH15/EX15.3/15_3.sci14
1 files changed, 14 insertions, 0 deletions
diff --git a/509/CH15/EX15.3/15_3.sci b/509/CH15/EX15.3/15_3.sci
new file mode 100644
index 000000000..6029c517d
--- /dev/null
+++ b/509/CH15/EX15.3/15_3.sci
@@ -0,0 +1,14 @@
+// Chapter 15 Example 3//
+clc
+clear
+//advance angle=b,extinction angle=c//
+b=20;// in degrees//
+c=10;
+//dc voltage input to inverter = vdi, ac output voltage of inverter =vdoi//
+// vdi=vdoi*(cosd(b)+cosd(c))/2 interchanging variables we get//
+vd=500;//in kV//
+vdoi=2*vd/(cosd(b)+cosd(c));
+printf("\n AC Output voltage of the inverter = %.2f kV\n",vdoi);
+// ac voltage supply =em//
+em=%pi*vdoi/(3*sqrt(3));
+printf("\n AC Output voltage = %.2f kV\n",em); \ No newline at end of file