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 --- 213/CH2/EX2.6/2_6.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 213/CH2/EX2.6/2_6.sce (limited to '213/CH2/EX2.6/2_6.sce') diff --git a/213/CH2/EX2.6/2_6.sce b/213/CH2/EX2.6/2_6.sce new file mode 100755 index 000000000..318f4ab30 --- /dev/null +++ b/213/CH2/EX2.6/2_6.sce @@ -0,0 +1,17 @@ +//To Find the Angular Acceleration +clc +//Given: +N0=0,N=2000 //rpm +t=20 //seconds +//Solution: +//Calculating the angular velocities +omega0=0, omega=2*%pi*N/60 //rad/s +//Calculating the angular acceleration +alpha=(omega-omega0)/t //rad/s^2 +//Calculating the angular distance moved by the wheel during 2000 rpm +theta=(omega0+omega)*t/2 //rad +//Calculating the number of revolutions made by the wheel +n=theta/(2*%pi) +//Results: +printf("\n\n The angular acceleration of the wheel, alpha = %.3f rad/s^2.\n",alpha) +printf(" The wheel makes n = %.1f revolutions.\n\n",n) \ No newline at end of file -- cgit