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 --- 1325/CH12/EX12.4/12_4.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 1325/CH12/EX12.4/12_4.sce (limited to '1325/CH12/EX12.4/12_4.sce') 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) -- cgit