summaryrefslogtreecommitdiff
path: root/1844/CH3/EX3.2/3Q2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1844/CH3/EX3.2/3Q2.sce')
-rw-r--r--1844/CH3/EX3.2/3Q2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1844/CH3/EX3.2/3Q2.sce b/1844/CH3/EX3.2/3Q2.sce
new file mode 100644
index 000000000..024abdf3e
--- /dev/null
+++ b/1844/CH3/EX3.2/3Q2.sce
@@ -0,0 +1,17 @@
+clc
+//all are in m
+// with 20 m chain
+L=20
+L1= 20+0.10
+l1=1200
+l= l1 * (L1/L)
+
+printf('True length of line = %f m\n',l)
+//with 25m
+L=25
+l1=1212
+L1= l * (L/l1)
+
+x=25-L1
+
+printf (' Thus 25 m chain was %f m too short',x)