diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /371/CH5/EX5.6/5_6.sci | |
download | Scilab-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-x | 371/CH5/EX5.6/5_6.sci | 9 |
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);
+
|