summaryrefslogtreecommitdiff
path: root/509/CH15/EX15.2/15_2.sci
diff options
context:
space:
mode:
Diffstat (limited to '509/CH15/EX15.2/15_2.sci')
-rw-r--r--509/CH15/EX15.2/15_2.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/509/CH15/EX15.2/15_2.sci b/509/CH15/EX15.2/15_2.sci
new file mode 100644
index 000000000..cacccea0d
--- /dev/null
+++ b/509/CH15/EX15.2/15_2.sci
@@ -0,0 +1,15 @@
+// Chapter 15 Example 2//
+clc
+clear
+//output voltage=e,ac output voltage =em,firing angle=a//
+a=20;// in degrees//
+e=400;// in kV//
+em=sqrt(2)*e/sqrt(3);
+vdo=3*sqrt(3)*em/%pi;
+printf("\n DC Output voltage = %.2f kV\n",vdo);
+//dc output voltage =vd,dc current=id,commutation resistance=rc//
+vd=500;// in kV//
+id=1;// in kA//
+// vd=vdo*cosd(a)-rc*id interchanging this we get//
+rc=(vdo*cosd(a)-vd)/id;
+printf("\n Effective commutation resistance = %.2f ohms\n",rc); \ No newline at end of file