diff options
Diffstat (limited to '24/CH11/EX11.3')
-rwxr-xr-x | 24/CH11/EX11.3/Example11_3.sce | 18 | ||||
-rwxr-xr-x | 24/CH11/EX11.3/Example11_3_result.txt | 11 |
2 files changed, 29 insertions, 0 deletions
diff --git a/24/CH11/EX11.3/Example11_3.sce b/24/CH11/EX11.3/Example11_3.sce new file mode 100755 index 000000000..e2cb4b15d --- /dev/null +++ b/24/CH11/EX11.3/Example11_3.sce @@ -0,0 +1,18 @@ +//Given that
+W1 = 3.40 //in rad/s
+W2 = 2.00 //in rad/s
+rev_taken = 20
+
+//Sample Problem 11-3a
+printf("**Sample Problem 11-3a**\n")
+angle_traversed = 2*%pi*rev_taken
+//Using newton's third equation of motion
+//Wf^2 = Wi^2 + 2*alpha*theta
+alpha = (W2^2 - W1^2)/(2*angle_traversed)
+printf("The angular acceleration during the stop is %frads^2\n", alpha)
+
+//Sample Problem 11-3b
+printf("\n**Sample Problem 11-3b**\n")
+//Using newton's first equation of motion
+time_taken = (W2 - W1)/alpha
+printf("The time taken in decreasing the speed is %fsec", time_taken)
\ No newline at end of file diff --git a/24/CH11/EX11.3/Example11_3_result.txt b/24/CH11/EX11.3/Example11_3_result.txt new file mode 100755 index 000000000..6d2346f39 --- /dev/null +++ b/24/CH11/EX11.3/Example11_3_result.txt @@ -0,0 +1,11 @@ +**Sample Problem 11-3a**
+The angular acceleration during the stop is -0.030080rads^2
+
+**Sample Problem 11-3b**
+The time taken in decreasing the speed is 46.542113sec
+-->exec('D:\Study Mat\computer science\Scilab\Fundamental of Physics\Chapter_11\Example11_3.sce', -1)
+**Sample Problem 11-3a**
+The angular acceleration during the stop is -0.030080rads^2
+
+**Sample Problem 11-3b**
+The time taken in decreasing the speed is 46.542113sec
\ No newline at end of file |