diff options
Diffstat (limited to '2732/CH5/EX5.1/Ex5_1.sce')
-rwxr-xr-x | 2732/CH5/EX5.1/Ex5_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2732/CH5/EX5.1/Ex5_1.sce b/2732/CH5/EX5.1/Ex5_1.sce new file mode 100755 index 000000000..3ae30b5a5 --- /dev/null +++ b/2732/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,11 @@ +clc
+//initialization of variables
+clear
+l=20 //cm
+dL=1 //m
+dl=0.004 //cm
+//calculations
+L=l*dL/dl //m
+//results
+printf('The depth of the clay bed is %d m',L)
+
|