From 1a5ed621a7186497d0e5d090b32306609cf1b70b Mon Sep 17 00:00:00 2001 From: Andy Whitehouse Date: Mon, 16 Mar 2026 17:01:45 -0700 Subject: [PATCH] testing code to add $out_SSB to rsim.step --- R/ecosim_multistep.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/ecosim_multistep.R b/R/ecosim_multistep.R index 007e31f0..54b48de5 100755 --- a/R/ecosim_multistep.R +++ b/R/ecosim_multistep.R @@ -49,6 +49,7 @@ rsim.step <- function(Rsim.scenario, Rsim.output, method = 'AB',year.end){ rownames(annual_Qlink) <- ylist full.run$out_Biomass <- rbind(full.run$out_Biomass, next.run$out_Biomass[start.month:end.month, ]) + full.run$out_SSB <- rbind(full.run$out_SSB, next.run$out_SSB[start.month:end.month, ]) full.run$out_Catch <- rbind(full.run$out_Catch, next.run$out_Catch[start.month:end.month, ]) full.run$out_Gear_Catch <- rbind(full.run$out_Gear_Catch, next.run$out_Gear_Catch[start.month:end.month, ])