[root]/branches/budaev/STOMACH/dat
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
sbu062 | 6 (100.0%) | 88889 (100.0%) | 14814.8 |
start stomach emptiying parameter matrix read from CSV file
6 lines of code changed in 1 file:
shorter second meet interval
{{{
z <- as.vector(0)
z[1:540] <- 0 # first 10 h (600 min) no food provided
z[541:571] <- 1 # 30 min first meal
z[572:812] <- 0 # 4 hours (240 min)
z[813:843] <- 1 # 30 min second meal
z[844:1300] <- 0 # no food is given later
write.csv(z, "food_exp2spr.csv") # save data to csv file
}}}
60 lines of code changed in 1 file:
earlier second meal
{{{
z <- as.vector(0)
z[1:540] <- 0 # first 10 h (600 min) no food provided
z[541:571] <- 1 # 30 min first meal
z[572:872] <- 0 # 5 hours (300 min)
z[873:903] <- 1 # 30 min second meal
z[904:1300] <- 0 # no food is given later
write.csv(z, "food_exp2spr.csv") # save data to csv file
}}}
60 lines of code changed in 1 file:
parameters for the spring experiment with fish mass 100g
Provisioning data generation, **two meals**
{{{
z <- as.vector(0)
z[1:540] <- 0 # first 10 h (600 min) no food provided
z[541:571] <- 1 # 30 min first meal
z[572:872] <- 0 # 5 hours (300 min)
z[873:903] <- 1 # 30 min second meal
z[904:1300] <- 0 # no food is given later
write.csv(z, "food_exp2spr.csv") # save data to csv file
}}}
1301 lines of code changed in 1 file:
move food provisioning data to `dat` directory, must be CSV
87462 lines of code changed in 2 files: