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/CH15/EX15.6/15_6.sci | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 371/CH15/EX15.6/15_6.sci (limited to '371/CH15/EX15.6') 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); -- cgit