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/CH2/EX2.8/Ex2_8.sce | 16 ++++++++++++++++ 3648/CH2/EX2.8/Ex2_8.txt | 1 + 2 files changed, 17 insertions(+) create mode 100644 3648/CH2/EX2.8/Ex2_8.sce create mode 100644 3648/CH2/EX2.8/Ex2_8.txt (limited to '3648/CH2/EX2.8') diff --git a/3648/CH2/EX2.8/Ex2_8.sce b/3648/CH2/EX2.8/Ex2_8.sce new file mode 100644 index 000000000..ba482d4f2 --- /dev/null +++ b/3648/CH2/EX2.8/Ex2_8.sce @@ -0,0 +1,16 @@ +//Example 2_8 +clc(); +clear; +//To find the tension in the Muscle and the Component Forces at elbow +F1=65 //units in Newtons +d1=0.1 //units in Meters +F2=20 //Units in Newtons +d2=0.35 //units in meters +theta1=20 //units in degrees +d3=0.035 //units in Meters +Tm=((F1*d1)+(F2*d2))/(cos(theta1*%pi/180)*d3) //units in Newtons +V=F1+F2-(Tm*cos(theta1*%pi/180)) +H=Tm*sin(theta1*%pi/180) +printf("Tension T=%d N\n",Tm) +printf("H=%d N\n",H) +printf("V=%d N",V) diff --git a/3648/CH2/EX2.8/Ex2_8.txt b/3648/CH2/EX2.8/Ex2_8.txt new file mode 100644 index 000000000..77ed7156b --- /dev/null +++ b/3648/CH2/EX2.8/Ex2_8.txt @@ -0,0 +1 @@ +To find the tension in the Muscle and the Component Forces at elbow \ No newline at end of file -- cgit