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 --- 24/CH6/EX6.2/Example6_2.sce | 20 ++++++++++++++++++++ 24/CH6/EX6.2/Example6_2_FBD.jpg | Bin 0 -> 39593 bytes 24/CH6/EX6.2/Example6_2_result.txt | 5 +++++ 3 files changed, 25 insertions(+) create mode 100755 24/CH6/EX6.2/Example6_2.sce create mode 100755 24/CH6/EX6.2/Example6_2_FBD.jpg create mode 100755 24/CH6/EX6.2/Example6_2_result.txt (limited to '24/CH6/EX6.2') diff --git a/24/CH6/EX6.2/Example6_2.sce b/24/CH6/EX6.2/Example6_2.sce new file mode 100755 index 000000000..6640c9ece --- /dev/null +++ b/24/CH6/EX6.2/Example6_2.sce @@ -0,0 +1,20 @@ +exec("degree_rad.sci",-1) + +//GIven that +g = 9.8 //in /s^2 +mass = 75 //in kg +mu_k = 0.10 +phi = dtor(42) + +//Sample Problem 6-2a +printf("**Sample Problem 6-2a**\n") +//T * cos(phi)- mu_k * N = 0 +//T * sin(phi) + N = mass * g +mat_A = [cos(phi),-mu_k;sin(phi),1] +mat_B = [0 ;mass * g] +F = inv(mat_A) * mat_B +printf("The Tension in the string is %f N\n", F(1)) + +//Sample Problem 6-2b +printf("\n**Sample Problem 6-2b**\n") +printf("The force of friction will not change") \ No newline at end of file diff --git a/24/CH6/EX6.2/Example6_2_FBD.jpg b/24/CH6/EX6.2/Example6_2_FBD.jpg new file mode 100755 index 000000000..47b424d1d Binary files /dev/null and b/24/CH6/EX6.2/Example6_2_FBD.jpg differ diff --git a/24/CH6/EX6.2/Example6_2_result.txt b/24/CH6/EX6.2/Example6_2_result.txt new file mode 100755 index 000000000..f95e9e07b --- /dev/null +++ b/24/CH6/EX6.2/Example6_2_result.txt @@ -0,0 +1,5 @@ +**Sample Problem 6-2a** +The Tension in the string is 90.734256 N + +**Sample Problem 6-2b** +The force of friction will not change \ No newline at end of file -- cgit