From f3a84f105045c650d1f2a30465fbd92e88a6a931 Mon Sep 17 00:00:00 2001 From: e-perl-NOAA Date: Mon, 15 Sep 2025 11:23:41 -0400 Subject: [PATCH] AFIX warning and correct AFIX for growth option 8 --- SS_readcontrol_330.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SS_readcontrol_330.tpl b/SS_readcontrol_330.tpl index ac7ecde3..c796a51b 100644 --- a/SS_readcontrol_330.tpl +++ b/SS_readcontrol_330.tpl @@ -917,15 +917,15 @@ Linf_decay = tempvec5(3); if (Grow_type == 8 && AFIX2 != 999) { - warnstream << "AFIX2 set to 999 for grow_type==8 because only Linfinity allowed for growth cessation "; + warnstream << "AFIX2 (Age post-settlement for L2, aka Amax) set to 999 for grow_type==8 because only Linfinity allowed for growth cessation "; write_message (ADJUST, 0); AFIX2 = 999.; } if (Grow_type == 8 && AFIX != 0.0) { - warnstream << "AFIX set to 0.0 for grow_type==8; growth cessation "; + warnstream << "AFIX (Age post-settlement for L1, aka Amin) set to 0.0 for grow_type==8; growth cessation "; write_message (ADJUST, 0); - AFIX2 = 0.0; + AFIX = 0.0; } // tempvec(4) is a placeholder }