From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 371/CH8/EX8.6/8_6.sci | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 371/CH8/EX8.6/8_6.sci (limited to '371/CH8/EX8.6') 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// -- cgit