summaryrefslogtreecommitdiff
path: root/1364/CH6
diff options
context:
space:
mode:
Diffstat (limited to '1364/CH6')
-rwxr-xr-x1364/CH6/EX6.1.1/6_1_1.sce8
-rwxr-xr-x1364/CH6/EX6.1.2/6_1_2.sce8
-rwxr-xr-x1364/CH6/EX6.1.3/6_1_3.sce8
-rwxr-xr-x1364/CH6/EX6.2.1/6_2_1.sce9
-rwxr-xr-x1364/CH6/EX6.3.1/6_3_1.sce11
-rwxr-xr-x1364/CH6/EX6.3.2/6_3_2.sce11
-rwxr-xr-x1364/CH6/EX6.3.3/6_3_3.sce10
-rwxr-xr-x1364/CH6/EX6.7.2/6_7_2.sce11
-rwxr-xr-x1364/CH6/EX6.8.1/6_8_1.sce8
-rwxr-xr-x1364/CH6/EX6.8.2/6_8_2.sce12
10 files changed, 96 insertions, 0 deletions
diff --git a/1364/CH6/EX6.1.1/6_1_1.sce b/1364/CH6/EX6.1.1/6_1_1.sce
new file mode 100755
index 000000000..f3d360f05
--- /dev/null
+++ b/1364/CH6/EX6.1.1/6_1_1.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+F= 100 //lbf
+a= 20 //ft/sec^2
+//CALCULATIONS
+m= F*32.2/a
+//RESULTS
+printf (' mass of the body = %.f lb',m)
diff --git a/1364/CH6/EX6.1.2/6_1_2.sce b/1364/CH6/EX6.1.2/6_1_2.sce
new file mode 100755
index 000000000..a413ccc93
--- /dev/null
+++ b/1364/CH6/EX6.1.2/6_1_2.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+m= 5 //lb
+a= 200 //cm/sec^2
+//CALCULATIONS
+F= m*a/(32.2*30.5)
+//RESULTS
+printf (' Force on the body = %.2f lbf',F)
diff --git a/1364/CH6/EX6.1.3/6_1_3.sce b/1364/CH6/EX6.1.3/6_1_3.sce
new file mode 100755
index 000000000..2290579ec
--- /dev/null
+++ b/1364/CH6/EX6.1.3/6_1_3.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+m= 1 //gm
+g= 327 //cm/sec^2
+//CALCULATIONS
+F=m*g/981
+//RESULTS
+printf (' Force on the body = %.2f gf',F)
diff --git a/1364/CH6/EX6.2.1/6_2_1.sce b/1364/CH6/EX6.2.1/6_2_1.sce
new file mode 100755
index 000000000..22642d6d4
--- /dev/null
+++ b/1364/CH6/EX6.2.1/6_2_1.sce
@@ -0,0 +1,9 @@
+clc
+//initialisation of variables
+w= 0.0764 //lbf/ft^3
+u= 88 //ft/sec
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+q= w*u^2/(2*g)
+//RESULTS
+printf (' dynamic pressure of air = %.2f lbf/ft^2',q)
diff --git a/1364/CH6/EX6.3.1/6_3_1.sce b/1364/CH6/EX6.3.1/6_3_1.sce
new file mode 100755
index 000000000..8708d7379
--- /dev/null
+++ b/1364/CH6/EX6.3.1/6_3_1.sce
@@ -0,0 +1,11 @@
+clc
+//initialisation of variables
+p= 60 //lbf/in^2
+w= 62.4 //lbf/ft^3
+l= 1 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+i= p*144/(w*l)
+a= i*g
+//RESULTS
+printf ('accelaration of fluid = %.f ft/sec^2',a)
diff --git a/1364/CH6/EX6.3.2/6_3_2.sce b/1364/CH6/EX6.3.2/6_3_2.sce
new file mode 100755
index 000000000..19f9cbde3
--- /dev/null
+++ b/1364/CH6/EX6.3.2/6_3_2.sce
@@ -0,0 +1,11 @@
+clc
+//initialisation of variables
+w= 60 //re/min
+d= 1 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+a= w^2*d*4*%pi^2/(2*60^2)
+i= a/g
+o= atand(i)
+//RESULTS
+printf ('slope ofthe free surface = %.1f degrees',o)
diff --git a/1364/CH6/EX6.3.3/6_3_3.sce b/1364/CH6/EX6.3.3/6_3_3.sce
new file mode 100755
index 000000000..537e8deec
--- /dev/null
+++ b/1364/CH6/EX6.3.3/6_3_3.sce
@@ -0,0 +1,10 @@
+clc
+//initialisation of variables
+H= 50 //ft
+l= 200 //ft
+g= 32.2 //ft/sec^2
+//CALCU;ATIONS
+i= H/l
+a= i*g
+//RESULTS
+printf ('accelaration = %.2f ft/sec^2',a)
diff --git a/1364/CH6/EX6.7.2/6_7_2.sce b/1364/CH6/EX6.7.2/6_7_2.sce
new file mode 100755
index 000000000..f3c46df79
--- /dev/null
+++ b/1364/CH6/EX6.7.2/6_7_2.sce
@@ -0,0 +1,11 @@
+clc
+//initialisation of variables
+g= 32.2 //ft/sec^2
+h= 12 //in
+r= 10 //in
+//CALCULATIONS
+w= sqrt(2*g*(r/12)*(12/r)^2)*(60/(2*%pi))
+P= h+(r/4)
+//RESULTS
+printf ('speed of rotation = %.f rev/min',w)
+printf ('\n maximum pressure head = %.1f in of water',P)
diff --git a/1364/CH6/EX6.8.1/6_8_1.sce b/1364/CH6/EX6.8.1/6_8_1.sce
new file mode 100755
index 000000000..7dbd9aaec
--- /dev/null
+++ b/1364/CH6/EX6.8.1/6_8_1.sce
@@ -0,0 +1,8 @@
+clc
+//initialisation of variables
+l= 6 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+T= 2*%pi*sqrt(l/g)
+//RESULTS
+printf ('natural period ofthe system = %.2f sec',T)
diff --git a/1364/CH6/EX6.8.2/6_8_2.sce b/1364/CH6/EX6.8.2/6_8_2.sce
new file mode 100755
index 000000000..ec7b993a5
--- /dev/null
+++ b/1364/CH6/EX6.8.2/6_8_2.sce
@@ -0,0 +1,12 @@
+clc
+//initialisation of variables
+l= 6 //ft
+g= 32.2 //ft/sec^2
+l1= 6 //ft
+l2= 6 //ft
+l3= 34//ft
+//CALCULATIONS
+a= -((l1+l2-l3)/l)*g
+w= sqrt(a/4.5)*(60/(2*%pi))
+//RESULTS
+printf ('maximum spees = %.1f cycles/min',w)