diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2615/CH5 | |
download | Scilab-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/CH5')
-rwxr-xr-x | 2615/CH5/EX21.1/21_1.sce | 8 | ||||
-rwxr-xr-x | 2615/CH5/EX22.2/22_2.sce | 8 | ||||
-rwxr-xr-x | 2615/CH5/EX23.3/23_3.sce | 9 | ||||
-rwxr-xr-x | 2615/CH5/EX24.4/24_4.sce | 8 | ||||
-rwxr-xr-x | 2615/CH5/EX25.5/25_5.sce | 10 | ||||
-rwxr-xr-x | 2615/CH5/EX26.6/26_6.sce | 9 |
6 files changed, 52 insertions, 0 deletions
diff --git a/2615/CH5/EX21.1/21_1.sce b/2615/CH5/EX21.1/21_1.sce new file mode 100755 index 000000000..08439249a --- /dev/null +++ b/2615/CH5/EX21.1/21_1.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+w=1200//kg
+f=0.3//kg
+//CALCULATIONS
+F=f*w//kg
+//RESULTS
+printf('the force will be necessary ti slide=% f kg',F)
diff --git a/2615/CH5/EX22.2/22_2.sce b/2615/CH5/EX22.2/22_2.sce new file mode 100755 index 000000000..c9f4ff47b --- /dev/null +++ b/2615/CH5/EX22.2/22_2.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+p=2//kg
+g=20//kg
+//CALCULATIONS
+F=p/g//kg
+//RESULTS
+printf('the coefficent of friction=% f kg',F)
diff --git a/2615/CH5/EX23.3/23_3.sce b/2615/CH5/EX23.3/23_3.sce new file mode 100755 index 000000000..548a02b0a --- /dev/null +++ b/2615/CH5/EX23.3/23_3.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+g=12//kg
+p=23//kg
+a=14//degree
+//CALCULATIONS
+F=(p*sind(a))/(p*cosd(a)+g)//kg
+//RESULTS
+printf('the coefficient of friction if the force=% f kg',F)
diff --git a/2615/CH5/EX24.4/24_4.sce b/2615/CH5/EX24.4/24_4.sce new file mode 100755 index 000000000..9db9472fc --- /dev/null +++ b/2615/CH5/EX24.4/24_4.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+a=400//mm
+h=100//mm
+//CALCULATIONS
+F=h/a//mm
+//RESULTS
+printf('the coefficint of the friction=% f mm',F)
diff --git a/2615/CH5/EX25.5/25_5.sce b/2615/CH5/EX25.5/25_5.sce new file mode 100755 index 000000000..5b6ba334d --- /dev/null +++ b/2615/CH5/EX25.5/25_5.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+w=1200//kg
+f=0.08//cm
+l=0.5//kg
+p=f*(w/75)//kg
+//CALCULATIONS
+P=w*l//kg
+//RESULTS
+printf('a wood drum together with its content=% f kg',P)
diff --git a/2615/CH5/EX26.6/26_6.sce b/2615/CH5/EX26.6/26_6.sce new file mode 100755 index 000000000..cbb8d8e9a --- /dev/null +++ b/2615/CH5/EX26.6/26_6.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+k=0.006//mm
+Q=200000//kg
+d=15//mm
+//CALCULATIONS
+P=k*(2*Q/d)//kg
+//RESULTS
+printf('the acting along the length of the bridge=% f kg',P)
|