Displaying 1 result from an estimated 1 matches for "rainpattern".
2012 Jul 05
2
7 days confusion over lists
...a few of them. There is a
run file that gets the list file going in the following code:
#--Initialising the lists to store variable values
tmp <- init_lists()
Param <- tmp[[1]]
Crop1 <- tmp[[2]]
Fert <- tmp[[3]]
Meteo <- tmp[[4]]
Soil <- tmp[[5]]
RainPattern <- tmp[[6]]
Crop2 <- tmp[[7]]
Cropres <- tmp[[8]]
rm(tmp)
The problem here is that the lists get confused with each other; that is
elements of Soil appear in Crop2. In the run file, I changed the order of
the lists (for example Fert <- tmp[[5]] and Crop2 <-tmp[[3]]) and i...