From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1418/CH27/EX27.9/EX27_9.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 1418/CH27/EX27.9/EX27_9.sce (limited to '1418/CH27/EX27.9/EX27_9.sce') diff --git a/1418/CH27/EX27.9/EX27_9.sce b/1418/CH27/EX27.9/EX27_9.sce new file mode 100644 index 000000000..319d66279 --- /dev/null +++ b/1418/CH27/EX27.9/EX27_9.sce @@ -0,0 +1,14 @@ +//EXAMPLE 27.9 +//DYNAMO + +clc; +funcprot(0); + +//Variable Initialisation +N=800;........//Speed in rpm +cs=123;.......//Number of segments in a commutator +Wb=3;.........//Brush span in segments +v=N*cs/60;.............//Velocity in segments/second +ct=Wb*60*1000/(N*cs);........//Commutation time in Milliseconds +y=round(ct*100)/100;......//Rounding of decimal places +disp(y,"Commutation time in Milliseconds:"); -- cgit