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 --- 3648/CH7/EX7.3/Ex7_3.sce | 10 ++++++++++ 3648/CH7/EX7.3/Ex7_3.txt | 1 + 2 files changed, 11 insertions(+) create mode 100644 3648/CH7/EX7.3/Ex7_3.sce create mode 100644 3648/CH7/EX7.3/Ex7_3.txt (limited to '3648/CH7/EX7.3') diff --git a/3648/CH7/EX7.3/Ex7_3.sce b/3648/CH7/EX7.3/Ex7_3.sce new file mode 100644 index 000000000..f4e804e63 --- /dev/null +++ b/3648/CH7/EX7.3/Ex7_3.sce @@ -0,0 +1,10 @@ +//Example 7_3 +clc(); +clear; +//To find average angular acceleration +wf=240 //units in rev/sec +w0=0 //units in rev/sec +t=2 //units in minutes +t=t*60 //units in sec +alpha=(wf-w0)/t //units in rev/sec^2 +printf("Average angular acceleration is alpha=%d rev/sec^2",alpha) diff --git a/3648/CH7/EX7.3/Ex7_3.txt b/3648/CH7/EX7.3/Ex7_3.txt new file mode 100644 index 000000000..625a4304f --- /dev/null +++ b/3648/CH7/EX7.3/Ex7_3.txt @@ -0,0 +1 @@ +Average angular acceleration is alpha=2 rev/sec^2 \ No newline at end of file -- cgit