summaryrefslogtreecommitdiff
path: root/2615/CH3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2615/CH3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2615/CH3')
-rwxr-xr-x2615/CH3/EX12.1/12_1.sce10
-rwxr-xr-x2615/CH3/EX13.2/13_2.sce8
-rwxr-xr-x2615/CH3/EX14.1/14_3.sce8
-rwxr-xr-x2615/CH3/EX15.4/15_4.sce11
-rwxr-xr-x2615/CH3/EX16.5/16_5.sce21
5 files changed, 58 insertions, 0 deletions
diff --git a/2615/CH3/EX12.1/12_1.sce b/2615/CH3/EX12.1/12_1.sce
new file mode 100755
index 000000000..ccf670bf1
--- /dev/null
+++ b/2615/CH3/EX12.1/12_1.sce
@@ -0,0 +1,10 @@
+clc
+//initialisation of variables
+g=1200//kg
+a=1500//min
+l=4500//min
+//CALCULATIONS
+P=g*a/l//kg
+P1=g-P//kg
+//RESULTS
+printf('the position of load=% f kg',P1)
diff --git a/2615/CH3/EX13.2/13_2.sce b/2615/CH3/EX13.2/13_2.sce
new file mode 100755
index 000000000..ffc31d913
--- /dev/null
+++ b/2615/CH3/EX13.2/13_2.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+p=900//kg
+l=60//min
+//CALCULATIONS
+M=p*l//kg
+//RESULTS
+printf('the moment of force =% f kg',M)
diff --git a/2615/CH3/EX14.1/14_3.sce b/2615/CH3/EX14.1/14_3.sce
new file mode 100755
index 000000000..4adb93b3e
--- /dev/null
+++ b/2615/CH3/EX14.1/14_3.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+d=80//min
+p=900//min
+//CALCULATIONS
+M=p*d/2//kg.cm
+//RESULTS
+printf('The moment of force P with respect point=% f kg cm',M)
diff --git a/2615/CH3/EX15.4/15_4.sce b/2615/CH3/EX15.4/15_4.sce
new file mode 100755
index 000000000..8ef4c9f82
--- /dev/null
+++ b/2615/CH3/EX15.4/15_4.sce
@@ -0,0 +1,11 @@
+clc
+//initialisation of variables
+p1=30//kg
+p2=53//kg
+p3=70//kg
+a1=80//degree
+a2=250//degree
+//CALCULATIONS
+R=p1+p3-p2//kg
+//RESULTS
+printf('the resultant parallel force=% f kg',R)
diff --git a/2615/CH3/EX16.5/16_5.sce b/2615/CH3/EX16.5/16_5.sce
new file mode 100755
index 000000000..9907dcfb1
--- /dev/null
+++ b/2615/CH3/EX16.5/16_5.sce
@@ -0,0 +1,21 @@
+clc
+//initialisation of variables
+p1=200//kg
+p2=300//kg
+p3=250//kg
+a1=1//m
+a2=1.5//m
+a3=2//m
+l=5//m
+w=20//kg
+L=5.5//m
+Rb=415//kg
+Ra=1325//kg
+//CALCULATIONS
+RA=p1+p2+p3//kg
+RB=RA-Rb//kg
+B=L*w//kg
+R=RB+(B/2)//kg
+S=Rb+(B/2)//kg
+//RESULTS
+printf('the beam lying is force=% f kg',S)