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/CH11/EX11.7/11_7.sci | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 371/CH11/EX11.7/11_7.sci (limited to '371/CH11/EX11.7/11_7.sci') diff --git a/371/CH11/EX11.7/11_7.sci b/371/CH11/EX11.7/11_7.sci new file mode 100755 index 000000000..18d68f7c0 --- /dev/null +++ b/371/CH11/EX11.7/11_7.sci @@ -0,0 +1,20 @@ +//Control of DC motors// +//Example 11.7// +N1=500; +N2=400; +Eb1=410; +Eb2=Eb1*N2/N1; +printf('Eb2=%fvolts',Eb2); +V=440;//operating voltage of dc motor in volts// +P=100;//input power of dc motor in KW// +Ia=P*1000/V; +printf('\nIa=%fAmps',Ia); +Ra=(V-Eb1)/Ia; +printf('\nRa=%fohms',Ra); +E2=415; +Edca=Eb2+(0.75*Ia*Ra);//terminal voltage of dc motor at 500 rpm and 75% load// +printf('\nTerminal voltage of dc motor at 500 rpm and 75percent load=Edca=%fvolts',Edca); +C=Edca/(1.35*E2);//cosine of the triggering angle of the converter// +printf('\nCosine of the triggering angle of the converter=C2=%f',C); +A=acos(C)*180/%pi;//triggering angle of the converter in degrees// +printf('\ntriggering angle of the converter A=%fdegrees',A); -- cgit