NOAA-EDAB / ms-keyrun

multispecies model keyrun documentation, data, analyses
https://noaa-edab.github.io/ms-keyrun/
Other
5 stars 2 forks source link

per capita consumption rate too low? #66

Closed vtrijoulet closed 1 year ago

vtrijoulet commented 1 year ago

Am I understanding well that the per capita consumption rate is in simPerCapCons, variable "intakeg"? It seems very low, for example a 20 year old cod (agecl=10) eats on average (taken across years) 125 g of food per year. When I multiply "totNagecl" by "intakeg" from the same table I do get "totconsagecl" in tons so it seems that the numbers all add up but the consumption rate values are a bit unrealistic. Is there a problem of unit in this table?

sgaichas commented 1 year ago

I agree that this seems low compared with data from 'real' systems. I did some comparisons here between two Atlantis models and a couple of different approaches to get per capita consumption. The current approach (Approach 2 in the linked doc) is better than the first approach but perhaps still low compared with what we would expect based on real data. I am hoping that it is at least internally consistent within Atlantis but this is worth discussing further.

gustavdelius commented 1 year ago

Is consumption rate at age something that is actually observable in the real world? If not, should it be included in the data that we use to calibrate our models? If yes, what about consumption rate at size, which is what size-based models would use? Atlantis could presumably export that as well.

vbartolino commented 1 year ago

per capita consumption [...] perhaps still low [...] I am hoping that it is at least internally consistent within Atlantis but this is worth discussing further.

Even if internally consistent, having simulations with a low predators' consumption could be problematic as it will result in weak predator-prey interactions, hence implicitly diminishing the usefulness and justification for using multispecies models. Can this be checked and eventually corrected in the simulations?

vbartolino commented 1 year ago

from an overview of the food intake simulated data, I'm confused by some of the patterns. For instance, for some species the food intake per capita is larger in younger ages, how can this be possible? Moreover, for some species the range of per capita consumption is unexpectedly too small

ggplot(mskeyrun::simPerCapCons %>% filter(variable=="intakeg"), aes(as.factor(agecl),value)) + geom_boxplot() + facet_wrap(~Name, scale="free")