summaryrefslogtreecommitdiff
path: root/3831/CH17/EX17.9/Ex17_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3831/CH17/EX17.9/Ex17_9.sce')
-rw-r--r--3831/CH17/EX17.9/Ex17_9.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3831/CH17/EX17.9/Ex17_9.sce b/3831/CH17/EX17.9/Ex17_9.sce
new file mode 100644
index 000000000..7f4b4f067
--- /dev/null
+++ b/3831/CH17/EX17.9/Ex17_9.sce
@@ -0,0 +1,14 @@
+// Example 17_9
+clc;funcprot(0);
+// Given data
+m=60.0;// kg
+m_bc=15.0;// kg
+P=400;// W
+V=15.0;// miles/h
+g=9.81;// m/s^2
+
+// Calculation
+w=(m+m_bc)*9.81;// N
+V=(V*1.609)*1000;// m/h
+T=(P*3600)/(w*V);// The locomotion transport number
+printf("\nThe locomotion transport number,T=%0.4f",T);