From 0a60dfe99b37d2f768f9a5eb3e23dce0f5f0748c Mon Sep 17 00:00:00 2001 From: Ian Taylor Date: Mon, 14 Jul 2025 13:31:40 -0700 Subject: [PATCH 1/2] test steeper join for harvest control rule --- SS_benchfore.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SS_benchfore.tpl b/SS_benchfore.tpl index 87683d9d..55518d50 100644 --- a/SS_benchfore.tpl +++ b/SS_benchfore.tpl @@ -2777,8 +2777,8 @@ FUNCTION void Get_Forecast() else if (ABC_Loop == 2 && s == 1) // Calc the buffer in season 1, will use last year's spawnbio if multiseas and spawnseas !=1 { - join1 = 1. / (1. + mfexp(10. * (SSB_current - H4010_bot * HCR_anchor))); - join2 = 1. / (1. + mfexp(10. * (SSB_current - H4010_top * HCR_anchor))); + join1 = 1. / (1. + mfexp(1000. * (SSB_current - H4010_bot * HCR_anchor))); + join2 = 1. / (1. + mfexp(1000. * (SSB_current - H4010_top * HCR_anchor))); switch (HarvestPolicy) { From 10669ed5c958db476d089691c2ea484a7806e43f Mon Sep 17 00:00:00 2001 From: Ian Taylor Date: Tue, 15 Jul 2025 10:30:56 -0700 Subject: [PATCH 2/2] test join of 100 instead of 1000 - related to #485 --- SS_benchfore.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SS_benchfore.tpl b/SS_benchfore.tpl index 55518d50..343733d3 100644 --- a/SS_benchfore.tpl +++ b/SS_benchfore.tpl @@ -2777,8 +2777,8 @@ FUNCTION void Get_Forecast() else if (ABC_Loop == 2 && s == 1) // Calc the buffer in season 1, will use last year's spawnbio if multiseas and spawnseas !=1 { - join1 = 1. / (1. + mfexp(1000. * (SSB_current - H4010_bot * HCR_anchor))); - join2 = 1. / (1. + mfexp(1000. * (SSB_current - H4010_top * HCR_anchor))); + join1 = 1. / (1. + mfexp(100. * (SSB_current - H4010_bot * HCR_anchor))); + join2 = 1. / (1. + mfexp(100. * (SSB_current - H4010_top * HCR_anchor))); switch (HarvestPolicy) {