diff options
Diffstat (limited to '3733/CH2/EX2.2/Ex2_2.sce')
-rw-r--r-- | 3733/CH2/EX2.2/Ex2_2.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3733/CH2/EX2.2/Ex2_2.sce b/3733/CH2/EX2.2/Ex2_2.sce new file mode 100644 index 000000000..8acf8118b --- /dev/null +++ b/3733/CH2/EX2.2/Ex2_2.sce @@ -0,0 +1,10 @@ +//Example 2_2
+clc;funcprot(0);
+// Given data
+Pdr=400*10^6; // Per day requirement in L
+Pdr=Pdr/10^3;// convert L to m^3
+Aw=30000*10^6;// Available water in the dam in m^3
+
+//Calculation
+n=(Aw)/(Pdr);// days
+printf('No.of days water supplied,N=%0.0f days\n',n);
|