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 --- 1205/CH3/EX3.2/S_3_2.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 1205/CH3/EX3.2/S_3_2.sce (limited to '1205/CH3/EX3.2/S_3_2.sce') diff --git a/1205/CH3/EX3.2/S_3_2.sce b/1205/CH3/EX3.2/S_3_2.sce new file mode 100644 index 000000000..f7463f0a3 --- /dev/null +++ b/1205/CH3/EX3.2/S_3_2.sce @@ -0,0 +1,14 @@ +clc; +// Given data +F=800; // N , Force applied on bracket +theta=60;// degree, angle made by lever with +ve X axis +theta=theta*%pi/180;// Conversion of angle into radian +r_AB=[-0.2, 0.16];//m vector drawn from B to A resolved in rectangular component +F=[F*cos(theta), F*sin(theta)]//N , vector F resolved in rectangular component +k=1;// Unit vector along Z axis + +// M_B=r_AB * F relation 3.7 from section 3.5 +M_B=det([r_AB; F])*k;// N.m +printf("The moment of force 800 N about B is %.2f N.m . -ve sign shows its acting clockwise\n",M_B); + + -- cgit