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/CH15/EX15.6 | |
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/CH15/EX15.6')
-rwxr-xr-x | 371/CH15/EX15.6/15_6.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/371/CH15/EX15.6/15_6.sci b/371/CH15/EX15.6/15_6.sci new file mode 100755 index 000000000..960601022 --- /dev/null +++ b/371/CH15/EX15.6/15_6.sci @@ -0,0 +1,10 @@ +//The ac Motor Control//
+//Example 15.6//
+f1a=50;//intial frequency in hertz//
+f1b=30;//value of frequency reduced to in hertz//
+Va=415;//operating voltage of induction motor in volts//
+Vb=Va*f1b/f1a;//input voltage to the motor in volts//
+printf('value of input voltage to the motor=Vb=%fvolts',Vb);
+Pa=100;//operating power of induction motor in KVA//
+Pb=Pa*f1b/f1a;//input power to the motor in KVA//
+printf('\nvalue of input power to the motor=Pb=%fKVA',Pb);
|