summaryrefslogtreecommitdiff
path: root/3647/CH10
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH10')
-rw-r--r--3647/CH10/EX10.3/ex10_3.sce20
-rw-r--r--3647/CH10/EX10.4/ex10_4.sce22
-rw-r--r--3647/CH10/EX10.5/EX10_5.sce15
3 files changed, 57 insertions, 0 deletions
diff --git a/3647/CH10/EX10.3/ex10_3.sce b/3647/CH10/EX10.3/ex10_3.sce
new file mode 100644
index 000000000..bf59d4c3c
--- /dev/null
+++ b/3647/CH10/EX10.3/ex10_3.sce
@@ -0,0 +1,20 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+clc
+//initialisation of variables
+l=2//units of length
+a=sqrt(3)//degree
+b=30//dgree
+c=60//degree
+v=1//length
+Pc=1.154//tonf compressive
+//CALCULATIONS
+R=(v*l)/a//tonf
+D=sqrt((R)^2+(v)^2)//tonf
+T=41//degree
+P=l*cosd(b)//tonf tensile
+Pa=Pc*cosd(b)//tonf tensile
+p=(l*cosd(b))/((1/2)+(Pc))/(1/2)//tonf compressive
+//RESULTS
+printf('the resolving horizontally =% f tonf compressive',p)
diff --git a/3647/CH10/EX10.4/ex10_4.sce b/3647/CH10/EX10.4/ex10_4.sce
new file mode 100644
index 000000000..e1e87e9ce
--- /dev/null
+++ b/3647/CH10/EX10.4/ex10_4.sce
@@ -0,0 +1,22 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+clc
+//initialisation of variables
+v=3//tonf
+p1=6.0//tonf,compressive
+p2=5.19//tonf,tensile
+a=30//degree
+b=60//degree
+p3=7//tonf,compressive
+//CALCULATIONS
+P1=p2*sind(b)//tonf,tensile
+P2=1/2*P1//tonf,compressive
+P3=p1*cosd(a)-p3*cosd(b)//tonf,compressive
+P4=P1*cosd(a)*sqrt(3)/P3//tonf,acting towards the left
+R=P1*sind(a)//tonf,acting downwards
+D=sqrt((P4)^2+(R)^2)//tonf
+T=(R/P4)//to the horizantal
+//RESULTS
+printf('the direction reaction=% f to the horizantal',D)
+printf('the direction reaction =% f to horizantal',T)
diff --git a/3647/CH10/EX10.5/EX10_5.sce b/3647/CH10/EX10.5/EX10_5.sce
new file mode 100644
index 000000000..31bd6f8a1
--- /dev/null
+++ b/3647/CH10/EX10.5/EX10_5.sce
@@ -0,0 +1,15 @@
+//Solutions to Problems In applied mechanics
+//A N Gobby
+clear all;
+
+clc
+//initialisation of variables
+R1=5//tonf
+R2=7//tonf
+P=5.77//tonf,compressive
+m=11.56//tonf
+a=30//degree
+//CALCULATIONS
+P=-sqrt(cosd(a)+m*sqrt(cosd(a))+2*0.5-R1*2)//tonf
+//RESULTS
+printf('the methods of sections in the force=% f tonf',P)