summaryrefslogtreecommitdiff
path: root/3648/CH2/EX2.7
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3648/CH2/EX2.7
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.7')
-rw-r--r--3648/CH2/EX2.7/Ex2_7.sce19
-rw-r--r--3648/CH2/EX2.7/Ex2_7.txt3
2 files changed, 22 insertions, 0 deletions
diff --git a/3648/CH2/EX2.7/Ex2_7.sce b/3648/CH2/EX2.7/Ex2_7.sce
new file mode 100644
index 000000000..c33d87e60
--- /dev/null
+++ b/3648/CH2/EX2.7/Ex2_7.sce
@@ -0,0 +1,19 @@
+//Example 2_7
+clc();
+clear;
+//To find tension in the supporting cable and Components of the force exerted by the hinge
+F1=50 //units in Newtons
+d1=0.7 //units in meters
+F2=100 //units in Newtons
+d2=1.4 //units in meters
+d3=1 //units in meters
+theta2=53 //units in degrees
+T=round(((F1*d1)+(F2*d2))/(d3*cos(theta2*%pi/180))) //units in Newtons
+theta1=37 //units in degrees
+H=cos(theta1*%pi/180)*T //units in Newtons
+
+V=F1+F2-(cos(theta2*%pi/180)*T) //units in Newtons
+printf("Tension T=%d N\n",T)
+printf("H=%d N\n",H)
+printf("V=%.2f N",V)
+//In text book the answer is printed wrong as H=234N but the correct answer is H=232N
diff --git a/3648/CH2/EX2.7/Ex2_7.txt b/3648/CH2/EX2.7/Ex2_7.txt
new file mode 100644
index 000000000..14a0b0bf9
--- /dev/null
+++ b/3648/CH2/EX2.7/Ex2_7.txt
@@ -0,0 +1,3 @@
+ Tension T=291 N
+H=232 N
+V=-25.13 N \ No newline at end of file