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.2/8_2.sci | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 371/CH8/EX8.2/8_2.sci (limited to '371/CH8/EX8.2') 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 -- cgit