summaryrefslogtreecommitdiff
path: root/1325/CH12/EX12.4/12_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1325/CH12/EX12.4/12_4.sce
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 '1325/CH12/EX12.4/12_4.sce')
-rw-r--r--1325/CH12/EX12.4/12_4.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1325/CH12/EX12.4/12_4.sce b/1325/CH12/EX12.4/12_4.sce
new file mode 100644
index 000000000..5981534c0
--- /dev/null
+++ b/1325/CH12/EX12.4/12_4.sce
@@ -0,0 +1,18 @@
+//To find the total forces applied at point A and B
+clc
+//given
+AB=12.5//in
+IB=10.15//in
+IA=10.75//in
+IX=2.92//in
+IY=5.5//in
+w=3//lb
+Fi=5//lb
+Fa1=9//lb
+Fb1=(Fa1*IA-w*IY-Fi*IX)/IB
+//From the polygon of forces
+Fa2=7.66//lb
+Fb2=3.0//lb
+Fa=(Fa1^2+Fa2^2)^(1/2)
+Fb=(Fb1^2+Fb2^2)^(1/2)
+printf("\nThe total force applied to the link AB at the pin A = Fa = %.2f lb\nThe total force applied to the link AB at the pin B = Fb = %.2f lb\n",Fa,Fb)