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/CH8/EX8.6 | |
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/CH8/EX8.6')
-rwxr-xr-x | 371/CH8/EX8.6/8_6.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/371/CH8/EX8.6/8_6.sci b/371/CH8/EX8.6/8_6.sci new file mode 100755 index 000000000..d547dc673 --- /dev/null +++ b/371/CH8/EX8.6/8_6.sci @@ -0,0 +1,14 @@ +//Harmonic and Powerfactor with the Converter system//
+//Example 8.6//
+printf('For six pulse converter most effective harmonic is 6th and for worst case a=90 degree\n');
+h=6;
+Wv=24.1;//voltage ripple in percentage//
+printf('voltage ripple=Wv=%fpercent',Wv);
+Edc=460;//dc voltage in volts//
+W=2*3.14*50;
+Ldc=6;//total dc circuit inductance in milliHenry//
+I6=Wv*Edc*10/(Ldc*h*W);//Harmonic current for 6th harmonic in amp//
+printf('\nHarmonic current for 6th harmonic=I6=%famp',I6);
+Id=300;
+Wi=100*I6/Id;//maximum value of current ripple in percentage//
+printf('\nmax. value of current ripple=Wi=%fpercent',Wi);//end of program//
|