From d9c094a0231557cb1894511f78716b436ca6d74b Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Wed, 18 Sep 2024 22:24:34 -0700 Subject: [PATCH] Tighten longline landings selectivity priors --- ss3/99-fix-stuff.R | 93 ++---------------------------- ss3/A0/control.ss | 4 +- ss3/A1/control.ss | 4 +- ss3/A10_highM/control.ss | 4 +- ss3/A11_low_zfrac/control.ss | 4 +- ss3/A12_high_zfrac/control.ss | 4 +- ss3/A13_extraSD/control.ss | 4 +- ss3/A14_lowdiscard/control.ss | 4 +- ss3/A15_100discard/control.ss | 4 +- ss3/A2_USgrowth/control.ss | 4 +- ss3/A3_highmat/control.ss | 4 +- ss3/A4_USgrowth_highmat/control.ss | 4 +- ss3/A5_highdiscard/control.ss | 4 +- ss3/A6_IPHC+CPUE/control.ss | 4 +- ss3/A7_SYNonly/control.ss | 4 +- ss3/A8_HBLLonly/control.ss | 4 +- ss3/A9_lowM/control.ss | 4 +- ss3/B1_1990inc/control.ss | 4 +- ss3/B2_2010step/control.ss | 4 +- ss3/B3_2005step/control.ss | 4 +- ss3/B4_1990inc_lowM/control.ss | 4 +- ss3/B5_2010step_lowM/control.ss | 4 +- 22 files changed, 48 insertions(+), 129 deletions(-) diff --git a/ss3/99-fix-stuff.R b/ss3/99-fix-stuff.R index 6f1e2f6..8d8142e 100644 --- a/ss3/99-fix-stuff.R +++ b/ss3/99-fix-stuff.R @@ -6,93 +6,12 @@ if (FALSE) { "A15_100discard", "B1_1990inc", "B2_2010step", "B3_2005step", "B4_1990inc_lowM", "B5_2010step_lowM") - # for (i in seq_along(mods)) { - # f <- readLines(paste0("ss3/", mods[i], "/control.ss")) - # ii <- grep("NatM_p_1_Fem_GP_1", f) - # f[ii] <- gsub("0\\.074", "0.065", f[ii]) - # writeLines(f, paste0("ss3/", mods[i], "/control.ss")) - # } - # - # mods <- c( - # "A10_highM" - # ) - # - # for (i in seq_along(mods)) { - # f <- readLines(paste0("ss3/", mods[i], "/control.ss")) - # ii <- grep("NatM_p_1_Fem_GP_1", f) - # f[ii] <- gsub("0\\.074", "0.065", f[ii]) - # writeLines(f, paste0("ss3/", mods[i], "/control.ss")) - # } - # - # - - # for (i in seq_along(mods)) { - # f <- readLines(paste0("ss3/", mods[i], "/data.ss")) - # f[grep("1 -1 1 2 1 IPHC # 6", f)] <- "1 -1 1 1 1 IPHC # 6" - # f[grep("1 -1 1 2 1 HBLL # 7", f)] <- "1 -1 1 1 1 HBLL # 7" - # f[grep("1 -1 1 2 1 iRec # 9", f)] <- "1 -1 1 1 1 iRec # 9" - # f[grep("1 -1 1 2 1 Salmon_Bycatch # 10", f)] <- "1 -1 1 1 1 Salmon_Bycatch # 10" - # writeLines(f, paste0("ss3/", mods[i], "/data.ss")) - # } - for (i in seq_along(mods)) { - f <- readLines(paste0("ss3/", mods[i], "/data.ss")) - - # previous: - # 2003 1 8 2.938 0.244 - # 2004 1 8 4.053 0.113 - # 2005 1 8 4.526 0.188 - # 2006 1 8 4.684 0.101 - # 2007 1 8 3.595 0.223 - # 2008 1 8 2.974 0.114 - # 2009 1 8 3.49 0.224 - # 2010 1 8 4.982 0.133 - # 2011 1 8 3.412 0.214 - # 2012 1 8 2.702 0.144 - # 2013 1 8 2.822 0.247 - # 2014 1 8 2.643 0.197 - # 2015 1 8 1.875 0.265 - # 2016 1 8 1.589 0.149 - # 2017 1 8 1.649 0.195 - # 2018 1 8 1.567 0.126 - # 2019 1 8 1.289 0.184 - # 2020 1 8 0.801 0.236 - # 2021 1 8 0.495 0.123 - # 2022 1 8 0.813 0.142 - # 2023 1 8 0.872 0.341 - - - start <- grep("2003 1 8 2.938", f) - end <- grep("2023 1 8 0.872", f) - - replacement <- - c( - "2003 1 8 2.669 0.228", - "2004 1 8 2.839 0.119", - "2005 1 8 2.938 0.169", - "2006 1 8 2.888 0.094", - "2007 1 8 2.218 0.157", - "2008 1 8 1.696 0.106", - "2009 1 8 2.198 0.161", - "2010 1 8 3.144 0.12", - "2011 1 8 2.299 0.157", - "2012 1 8 1.781 0.121", - "2013 1 8 1.754 0.149", - "2014 1 8 1.527 0.135", - "2015 1 8 1.257 0.176", - "2016 1 8 1.22 0.119", - "2017 1 8 1.209 0.143", - "2018 1 8 1.013 0.107", - "2019 1 8 0.766 0.178", - "2020 1 8 0.612 0.193", - "2021 1 8 0.48 0.096", - "2022 1 8 0.651 0.128", - "2023 1 8 0.664 0.256" - ) - stopifnot(length(f[start:end])==length(replacement)) - - f[start:end] <- replacement - - writeLines(f, paste0("ss3/", mods[i], "/data.ss")) + f <- readLines(paste0("ss3/", mods[i], "/control.ss")) + x1 <- grep("Size_DblN_peak_HookLine_Landings\\(4\\)", f) + x2 <- grep("SzSel_Male_Peak_HookLine_Landings\\(4\\)", f) + f[x1] <- gsub("28\\.5", "14.25", f[x1]) + f[x2] <- gsub("28\\.5", "14.25", f[x2]) + writeLines(f, paste0("ss3/", mods[i], "/control.ss")) } } \ No newline at end of file diff --git a/ss3/A0/control.ss b/ss3/A0/control.ss index 67dd71d..83dbfb2 100644 --- a/ss3/A0/control.ss +++ b/ss3/A0/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A1/control.ss b/ss3/A1/control.ss index 88e5014..b5467c3 100644 --- a/ss3/A1/control.ss +++ b/ss3/A1/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A10_highM/control.ss b/ss3/A10_highM/control.ss index 60b48ed..961fd3b 100644 --- a/ss3/A10_highM/control.ss +++ b/ss3/A10_highM/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A11_low_zfrac/control.ss b/ss3/A11_low_zfrac/control.ss index 96421ca..b512683 100644 --- a/ss3/A11_low_zfrac/control.ss +++ b/ss3/A11_low_zfrac/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A12_high_zfrac/control.ss b/ss3/A12_high_zfrac/control.ss index 156e9b9..fbe5363 100644 --- a/ss3/A12_high_zfrac/control.ss +++ b/ss3/A12_high_zfrac/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A13_extraSD/control.ss b/ss3/A13_extraSD/control.ss index eaa3d7e..f4ae818 100644 --- a/ss3/A13_extraSD/control.ss +++ b/ss3/A13_extraSD/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A14_lowdiscard/control.ss b/ss3/A14_lowdiscard/control.ss index d738ecd..0fbdcf6 100644 --- a/ss3/A14_lowdiscard/control.ss +++ b/ss3/A14_lowdiscard/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A15_100discard/control.ss b/ss3/A15_100discard/control.ss index adcd3e9..c988d17 100644 --- a/ss3/A15_100discard/control.ss +++ b/ss3/A15_100discard/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A2_USgrowth/control.ss b/ss3/A2_USgrowth/control.ss index b6f5729..7520e9c 100644 --- a/ss3/A2_USgrowth/control.ss +++ b/ss3/A2_USgrowth/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A3_highmat/control.ss b/ss3/A3_highmat/control.ss index 1b38ff9..4bc8c81 100644 --- a/ss3/A3_highmat/control.ss +++ b/ss3/A3_highmat/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A4_USgrowth_highmat/control.ss b/ss3/A4_USgrowth_highmat/control.ss index ad726e3..fe35cda 100644 --- a/ss3/A4_USgrowth_highmat/control.ss +++ b/ss3/A4_USgrowth_highmat/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A5_highdiscard/control.ss b/ss3/A5_highdiscard/control.ss index 52b48d1..51e8c89 100644 --- a/ss3/A5_highdiscard/control.ss +++ b/ss3/A5_highdiscard/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A6_IPHC+CPUE/control.ss b/ss3/A6_IPHC+CPUE/control.ss index de94a2f..05aa81b 100644 --- a/ss3/A6_IPHC+CPUE/control.ss +++ b/ss3/A6_IPHC+CPUE/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A7_SYNonly/control.ss b/ss3/A7_SYNonly/control.ss index 972e1f9..5c3fb41 100644 --- a/ss3/A7_SYNonly/control.ss +++ b/ss3/A7_SYNonly/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A8_HBLLonly/control.ss b/ss3/A8_HBLLonly/control.ss index 9b4045d..1e8d55a 100644 --- a/ss3/A8_HBLLonly/control.ss +++ b/ss3/A8_HBLLonly/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/A9_lowM/control.ss b/ss3/A9_lowM/control.ss index 62a57e4..715dbdc 100644 --- a/ss3/A9_lowM/control.ss +++ b/ss3/A9_lowM/control.ss @@ -376,13 +376,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/B1_1990inc/control.ss b/ss3/B1_1990inc/control.ss index a16bf07..4dd3bd3 100644 --- a/ss3/B1_1990inc/control.ss +++ b/ss3/B1_1990inc/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/B2_2010step/control.ss b/ss3/B2_2010step/control.ss index 25ad9de..c01d8ba 100644 --- a/ss3/B2_2010step/control.ss +++ b/ss3/B2_2010step/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/B3_2005step/control.ss b/ss3/B3_2005step/control.ss index c5a1f78..53d56b0 100644 --- a/ss3/B3_2005step/control.ss +++ b/ss3/B3_2005step/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/B4_1990inc_lowM/control.ss b/ss3/B4_1990inc_lowM/control.ss index 0240ed1..458be63 100644 --- a/ss3/B4_1990inc_lowM/control.ss +++ b/ss3/B4_1990inc_lowM/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4) diff --git a/ss3/B5_2010step_lowM/control.ss b/ss3/B5_2010step_lowM/control.ss index a739f88..4931c57 100644 --- a/ss3/B5_2010step_lowM/control.ss +++ b/ss3/B5_2010step_lowM/control.ss @@ -377,13 +377,13 @@ -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_MidwaterTrawl(3) 0 1 0.884402 0.5 0.287717 2 3 0 0 0 0 0 0 0 # SzSel_Male_Scale_MidwaterTrawl(3) # 4 HookLine_Landings LenSelex - 35 110 101.432 95 28.5 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) + 35 110 101.432 95 14.25 6 3 0 0 0 0 0 0 0 # Size_DblN_peak_HookLine_Landings(4) -10 50 -10 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_top_logit_HookLine_Landings(4) -10 10 4.79594 4 0.3 6 3 0 0 0 0 0 0 0 # Size_DblN_ascend_se_HookLine_Landings(4) -10 50 15 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_descend_se_HookLine_Landings(4) -999 70 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_start_logit_HookLine_Landings(4) -999 999 -999 0 0 0 -50 0 0 0 0 0 0 0 # Size_DblN_end_logit_HookLine_Landings(4) - -100 0 -20.2021 -10 28.5 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) + -100 0 -20.2021 -10 14.25 6 3 0 0 0 0 0 0 0 # SzSel_Male_Peak_HookLine_Landings(4) -10 10 -1.96691 0 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Ascend_HookLine_Landings(4) -50 10 2.46477 -13.2 0.3 6 3 0 0 0 0 0 0 0 # SzSel_Male_Descend_HookLine_Landings(4) -999 100 -999 0 0 0 -50 0 0 0 0 0 0 0 # SzSel_Male_Final_HookLine_Landings(4)