From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3204/CH5/EX5.5/Ex5_5.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 3204/CH5/EX5.5/Ex5_5.sce (limited to '3204/CH5/EX5.5') diff --git a/3204/CH5/EX5.5/Ex5_5.sce b/3204/CH5/EX5.5/Ex5_5.sce new file mode 100644 index 000000000..b1297171f --- /dev/null +++ b/3204/CH5/EX5.5/Ex5_5.sce @@ -0,0 +1,16 @@ +//Initilization of variables +W=100 //N //self weight of the man +alpha=30 //degree // angle made by the ladder with the wall +Lob=4 //m // length from the horizontal to the top of the ladder touching the wall(vertical) +Lcd=2 //m +//Calculations +// using the equiblirium equations +Ya=W //N // From eq'n 2 +Lad=Lcd*tand(alpha) //m //Lad is the distance fom pt A to the point where the line from the cg intersects the horizontal +Rb=(W*Lad)/Lob //N // Taking sum of moment abt A +Xa=Rb //N // From eq'n 1 +//Results +clc +printf('The horizontal reaction at A i.e Xa is %f N \n',Xa) +printf('The vertical reaction at A i.e Ya is %f N \n',Ya) +printf('The reaction at B i.e Rb is %f N \n',Rb) -- cgit