summaryrefslogtreecommitdiff
path: root/3886/CH2/EX2.22
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH2/EX2.22
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH2/EX2.22')
-rw-r--r--3886/CH2/EX2.22/2_22.txt8
-rw-r--r--3886/CH2/EX2.22/Ex2_22.sce11
2 files changed, 19 insertions, 0 deletions
diff --git a/3886/CH2/EX2.22/2_22.txt b/3886/CH2/EX2.22/2_22.txt
new file mode 100644
index 000000000..23d53e936
--- /dev/null
+++ b/3886/CH2/EX2.22/2_22.txt
@@ -0,0 +1,8 @@
+
+--> exec('E:\My program EM\2. Resultant and equilibrium of system of coplanar concurrent forces\Ex2_22.sce', -1)
+
+The reactions are:-
+RA=200.0 N
+RB=600.0 N
+RC=200.0 N
+RD=632.5 N \ No newline at end of file
diff --git a/3886/CH2/EX2.22/Ex2_22.sce b/3886/CH2/EX2.22/Ex2_22.sce
new file mode 100644
index 000000000..76e7694fb
--- /dev/null
+++ b/3886/CH2/EX2.22/Ex2_22.sce
@@ -0,0 +1,11 @@
+//determine the reactions developed at contact points
+//refer fig. 2.27 (a),(b) and (c)
+//considering the equilibrium conditions of cylinders we have
+RB=600 //N
+alpha=atand(450/150) //degree
+RD=RB/sind(alpha) //N
+RC=RD*cosd(alpha) //N
+RA=RC //N
+printf("\nThe reactions are:-\nRA=%.1f N\nRB=%.1f N\nRC=%.1f N\nRD=%.1f N",RA,RB,RC,RD)
+//The answers vary due to round off error
+