This post is a continuation of my other post Why is my controlling shell script not working?. I created another post because this contains a separate issue that I encountered with the same scripts of the previous post.
I'm trying to do the Hydrologic Simulation seen in page 10 of this document.
Here is the script:
#!/bin/sh
g.region rast=elevation.dem -p
r.mapcalc "water = 120" #12 inches of water in each cell
g.copy rast=elevation.dem,elev
d.mon x0
d.rast water
i=1
while [ $i != 100 ]
do
n=1
while [ $n != 10 ]
do
r.mapcalc < water.mapcalc # run the simulation
d.rast water
n=`expr $n + 1`
done
g.copy rast=water,water.$i
i=`expr $i + 1`
done
The following is the water.mapcalc script:
water = water + eval(x = elev + water, \
if (x > (y = elev[-1, 0] + water[-1, 0]), \
-.15 * if (elev > y, water, x - y), \
.15 * if (elev[-1, 0] > x, water[-1, 0], y - x))+ \
if (x > (y = elev[1, 0] + water[1, 0]), \
-.15 * if (elev > y, water, x - y), \
.15 * if (elev[1, 0] > x, water[1, 0], y - x))+ \
if (x > (y = elev[0, -1] + water[0, -1]), \
-.15 * if (elev > y, water, x - y), \
.15 * if (elev[0, -1] > x, water[0, -1], y - x))+ \
if (x > (y = elev[0, 1] + water[0, 1]), \
-.15 * if (elev > y, water, x - y), \
.15 * if (elev[0, 1] > x, water[0, 1], y - x))+ \
if (x > (y = elev[-1, 1] + water[-1, 1]), \
-.10 * if (elev > y, water, x - y), \
.10 * if (elev[-1, 1] > x, water[-1, 1], y - x))+ \
if (x > (y = elev[1, 1] + water[1, 1]), \
-.10 * if (elev > y, water, x - y), \
.10 * if (elev[1, 1] > x, water[1, 1], y - x))+ \
if (x > (y = elev[1, -1] + water[1, -1]), \
-.10 * if (elev > y, water, x - y), \
.10 * if (elev[1, -1] > x, water[1, -1], y - x))+ \
if (x > (y = elev[-1, -1] + water[-1, -1]), \
-.10 * if (elev > y, water, x - y), \
.10 * if (elev[-1, -1] > x, water[-1, -1], y - x)))
and I used it with the Spearfish dataset.
The result of the code is that the map (elevation.dem) is getting smaller every succeeding iteration. I cannot figure out why it is happening. Isn't it that the result for every iteration (using the script above) should just be the transfer of excess height and not the cropping of the edges of the map?