summaryrefslogtreecommitdiff
path: root/371/CH5/EX5.6/5_6.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /371/CH5/EX5.6/5_6.sci
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '371/CH5/EX5.6/5_6.sci')
-rwxr-xr-x371/CH5/EX5.6/5_6.sci9
1 files changed, 9 insertions, 0 deletions
diff --git a/371/CH5/EX5.6/5_6.sci b/371/CH5/EX5.6/5_6.sci
new file mode 100755
index 000000000..c5ffd26df
--- /dev/null
+++ b/371/CH5/EX5.6/5_6.sci
@@ -0,0 +1,9 @@
+//Line commuted Converters//
+//Example 5.6//
+E2=230;//AC line voltage in volts//
+Emax=sqrt(2)*E2;
+C=cos(13*%pi/180);//cosine value of the commutational angle//
+Xt=0.16;//effective reactance of the thyristor in ohms//
+Id=(1-C)*E2*sqrt(3)/Xt;//AC load current in amperes//
+printf('AC load current=Id=%famps',Id);
+