summaryrefslogtreecommitdiff
path: root/3886/CH2/EX2.18/Ex2_18.sce
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.18/Ex2_18.sce
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.18/Ex2_18.sce')
-rw-r--r--3886/CH2/EX2.18/Ex2_18.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3886/CH2/EX2.18/Ex2_18.sce b/3886/CH2/EX2.18/Ex2_18.sce
new file mode 100644
index 000000000..04b2f780d
--- /dev/null
+++ b/3886/CH2/EX2.18/Ex2_18.sce
@@ -0,0 +1,17 @@
+//finding tension and inclination
+//refer fig. 2.23 (a),(b) and (c)
+//Applying Lami's theorem at B
+T1=20*sind(50)/sind(180+30-50) //kN
+T2=20*sind(180-30)/sind(180+30-50) //kN
+//now consider equilibrium of forces at point C we get
+//T3*sind(theta)=22.4...(1)
+//T3*cosd(theta)=11.20...(2)
+//from (1) and (2) we get
+theta=atand(2) //degree
+//then (1) gives
+T3=T2*sind(50)/sind(theta) //kN
+printf("\nThe required values are:-\nT1=%.2f kN\nT2=%.2f kN\nT3=%.2f kN",T1,T2,T3)
+
+
+
+