summaryrefslogtreecommitdiff
path: root/371/CH11/EX11.2/11_2.sci
diff options
context:
space:
mode:
Diffstat (limited to '371/CH11/EX11.2/11_2.sci')
-rwxr-xr-x371/CH11/EX11.2/11_2.sci10
1 files changed, 10 insertions, 0 deletions
diff --git a/371/CH11/EX11.2/11_2.sci b/371/CH11/EX11.2/11_2.sci
new file mode 100755
index 000000000..abc64796c
--- /dev/null
+++ b/371/CH11/EX11.2/11_2.sci
@@ -0,0 +1,10 @@
+//Control of DC motors//
+//Example 11.2//
+Vdc=440;//Rated dc voltage in volts//
+Edca=Vdc+Vdc/10;//Required voltage after allowing 10% drop//
+printf('Required voltage after allowing 10percent drop=Edca=%fvolts',Edca);
+Edc=1.35*415;
+C=Edca/Edc;
+printf('\nCosine of the locked angle=C=%f',C);
+A=acos(C)*180/%pi;//locked angle in degrees//
+printf('\nConverter shall be locked at an angle of A=%fdegrees',A);