| ssb {FLCore} | R Documentation |
Returns the Spawning Stock Biomass of FLStock and FLBiol objects.
For FLStock-class objects the nature of the calculation depends
on the units in the harvest slot. See details below.
ssb(object)
For an FLStock-class with harvest units 'f' SSB is calculated as
SSB = sum(N*exp(-F*propF-M*propM) * wt * mat)
For an FLStock-class with harvest units 'hr' SSB is calculated as
SSB = sum(N*(1-harvest)*exp(-M*propM) * wt * mat)
The units of the harvest slot in the FLStock object must be specified
as either 'f' for an instantaneous fishing mortality or else as 'hr' for a
harvest rate.
FLBiol-class the spawning biomass at the beginning of the
year is calculated.
SSB = sum(N * wt * mat)
The FLR Team
data(ple4) units(harvest(ple4)) # check the units of the harvest slot ssb(ple4)