diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3648/CH2/EX2.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3648/CH2/EX2.8')
-rw-r--r-- | 3648/CH2/EX2.8/Ex2_8.sce | 16 | ||||
-rw-r--r-- | 3648/CH2/EX2.8/Ex2_8.txt | 1 |
2 files changed, 17 insertions, 0 deletions
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 |