Closed brianlangseth-NOAA closed 2 years ago
There were three options discussed during meeting on 5/20/2022 including
fix F to 0 when catch is 0 Add the following to the tpl after the lines below
if(OBS_yield_fleet(j,r,y,z)==0){
F_year(j,r,y,z) = 0;
}
set catch to some arbitrary and low value
remove early years of data from the model (added functionality in commit b843bc6)
Update on my attempts
When fixing selectivity and estimating F, the population often crashes. Much of the reason for this is that there is a first year of very high F in one or two fleets resulting in high yield. This also causes the fleet likelihood to go sky high.
Diagnostics: Fix selectivity and reduce lower bound on F
The model appears to want to do this because observed catches with values of 0 are included in the likelihood (fleet 3 has about 5 years of 0 catches in the beginning years and fleet 6 has ~100 years of 0). The model could reduce values of F (and decreasing the lower bound of F helps with this so F is closer to 0) but the model wants instead to crash the population so as to get low catches in all but a few years. Even with the F_pen on, it doesn't do enough to set F near 0.
I tested out a run with years of 0 catch removed from the likelihood component. The results are promising, in that catch likelihood is drastically reduced. However, the first years still have highish F that leads to a decline in abundance, but overall Fs aren't huge. For years where catch is in the likelihood the fit is perfect. Furthermore, the fit to the survey is the best Ive seen (and this is with q hitting the bound).
Diagnostics: Remove years of 0 catch from likelihood
This raises two questions for discussing 1) Do we remove years of 0 catch from the likelihood? 2) How do we deal with catch (really F) during years with no information?