summaryrefslogtreecommitdiff
path: root/3776/CH5
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 10:59:42 +0530
committerprashantsinalkar2018-02-03 10:59:42 +0530
commitd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (patch)
tree612077a22c8142c0ae754ec11882a4e7d5dc25a4 /3776/CH5
parentf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (diff)
downloadScilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.gz
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.bz2
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.zip
Modified the code
Diffstat (limited to '3776/CH5')
-rw-r--r--3776/CH5/EX5.1/Ex5_1.sce2
-rw-r--r--3776/CH5/EX5.2/Ex5_2.sce4
-rw-r--r--3776/CH5/EX5.3/Ex5_3.sce16
-rw-r--r--3776/CH5/EX5.4/Ex5_4.sce4
-rw-r--r--3776/CH5/EX5.9/Ex5_9.sce4
5 files changed, 15 insertions, 15 deletions
diff --git a/3776/CH5/EX5.1/Ex5_1.sce b/3776/CH5/EX5.1/Ex5_1.sce
index f223bc45a..7d38e393a 100644
--- a/3776/CH5/EX5.1/Ex5_1.sce
+++ b/3776/CH5/EX5.1/Ex5_1.sce
@@ -7,7 +7,7 @@ R_1 = 100 //N - The Force acting
l_2 = 0.2 //mt -R_1 acting point the distance from 'a'
R_2 = 160 //N The Force acting
l_3 = 0.3 //mt -R_2 acting point the distance from 'a'
-//caliculations
+//calculations
//F_X = 0 forces in x directions
R_A_X = 0 // since there are no forces in X-direction
diff --git a/3776/CH5/EX5.2/Ex5_2.sce b/3776/CH5/EX5.2/Ex5_2.sce
index 53aac0bc3..d285b7978 100644
--- a/3776/CH5/EX5.2/Ex5_2.sce
+++ b/3776/CH5/EX5.2/Ex5_2.sce
@@ -2,8 +2,8 @@ clear
//Given
P_Max = 10 //N - the maximum distribution in a triangular distribution
L = 3 //mt the total length of force distribution
-L_X = 5 //mt - the horizantal length of the rod
-//caliculations
+L_X = 5 //mt - the horizontal length of the rod
+//calculations
F_y = P_Max*L*0.5 //N - The force due to triangular distribition
L_com = 2*L /3 //mt - the resultant force acting as a result of distribution acting position
diff --git a/3776/CH5/EX5.3/Ex5_3.sce b/3776/CH5/EX5.3/Ex5_3.sce
index 44cb6144a..46e8c4366 100644
--- a/3776/CH5/EX5.3/Ex5_3.sce
+++ b/3776/CH5/EX5.3/Ex5_3.sce
@@ -2,26 +2,26 @@ clear
//given
F = 5 //K - force acting on the system
tan1 = (4/3) // the Tan of the angle of force with x axis
-l_ab = 12 //inch - the total length of ab
+l_ab = 12 //inch - the total length of ab
l = 3 // inch - Distance from 'a'
-//caliculation
+//calculation
F_X = 4 //K
F_Y = 3 //k
//M_A = 0 momentum at point a is zero
-// F_X*l- R_B_Y*l_ab = 0
+// F_X*l- R_B_Y*l_ab = 0
R_B_Y = F_X*l/l_ab
//M_B= 0 momentum at point b is zero
// R_A_Y*l_ab - F_X*(l_ab - l)
R_A_Y = F_X*(l_ab - l)/l_ab
-
+
//F_X = 0 forces in x directions
-R_A_X = F_Y + R_B_Y
+R_A_X = F_Y + R_B_Y
R_B_X = R_B_Y // since the angle is 45 (180/%pi)*
-//resultants
-R_A = (R_A_X**2 + R_A_Y**2**0.5)
-R_B = (R_B_X**2 + R_B_Y**2**0.5)
+//resultants
+R_A = (R_A_X**2 + R_A_Y**2)**0.5
+R_B = (R_B_X**2 + R_B_Y**2)**0.5
printf("The X,Y components and resultant of reaction force at A is %0.3f, %0.3f,%0.3f N",R_A_X,R_A_Y,R_A)
printf("\nThe X,Y components and resultant of reaction force at B is %0.3f, %0.3f,%0.3f N",R_B_X,R_B_Y,R_B)
diff --git a/3776/CH5/EX5.4/Ex5_4.sce b/3776/CH5/EX5.4/Ex5_4.sce
index 2a3e57db7..2a3235419 100644
--- a/3776/CH5/EX5.4/Ex5_4.sce
+++ b/3776/CH5/EX5.4/Ex5_4.sce
@@ -2,8 +2,8 @@ clear
//Given
P_Max = 10 //N - the maximum distribution in a triangular distribution
L = 3 //mt the total length of force distribution
-L_X = 5 //mt - the horizantal length of the rod
-//caliculations
+L_X = 5 //mt - the horizontal length of the rod
+//calculations
F_y = P_Max*L*0.5 //N - The force due to triangular distribition
L_com = 2*L /3 //mt - the resultant force acting as a result of distribution acting position
diff --git a/3776/CH5/EX5.9/Ex5_9.sce b/3776/CH5/EX5.9/Ex5_9.sce
index 245adc229..87a133ed4 100644
--- a/3776/CH5/EX5.9/Ex5_9.sce
+++ b/3776/CH5/EX5.9/Ex5_9.sce
@@ -2,8 +2,8 @@ clear
//Given
P_Max = 10 //N - the maximum distribution in a triangular distribution
L = 3 //mt the total length of force distribution
-L_X = 5 //mt - the horizantal length of the rod
-//caliculations
+L_X = 5 //mt - the horizontal length of the rod
+//calculations
F_y = P_Max*L*0.5 //N - The force due to triangular distribition
L_com = 2*L /3 //mt - the resultant force acting as a result of distribution acting position