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.2/8_2.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/CH8/EX8.2/8_2.sci')
-rwxr-xr-x | 371/CH8/EX8.2/8_2.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/371/CH8/EX8.2/8_2.sci b/371/CH8/EX8.2/8_2.sci new file mode 100755 index 000000000..c6184b561 --- /dev/null +++ b/371/CH8/EX8.2/8_2.sci @@ -0,0 +1,14 @@ +//Harmonic and Powerfactor with the Converter system//
+//Example 8.2//
+printf('For six pulse converter most effective harmonic is 6th and for worst case a=90 degree\n');
+Wv=24.1;//voltage ripple in percentage//
+printf('voltage ripple=Wv=%fpercent',Wv);
+Id=200;
+I6=(5*Id)/100;//Harmonic current for 6th harmonic in amp//
+printf('\nHarmonic current for 6th harmonic=I6=%famp',I6);
+Edc=460;//dc voltage in volts//
+W=2*3.14*50;
+La=1;//inductance already present in the circuit in milliHenry//
+L=((Wv*Edc*10)/(I6*6*W))-La;//additional inductance required in milliHenry//
+L=5.93-1;
+printf('\nadditional inductance required=L=%fmilliHenry',L);
\ No newline at end of file |