Giter Club home page Giter Club logo

Comments (4)

Kenhasteandersen avatar Kenhasteandersen commented on August 23, 2024

from mizer.

Kenhasteandersen avatar Kenhasteandersen commented on August 23, 2024

Would this do? It could go into the summary functions.

Ken


#' Calculate the a yield curve of a species
#'
#' Calculates the yield for a species for various values of effort for that species,
#' while the effort of the other species are kept constant.
#'
#' @param param An object of class \code{MizerParams}.
#' @param effort A vector of effort for a species.
#' @param iSpecies The number of the species to change.
#' @param F The fishing mortalities to sweep over
#'
#' @return An array containing the SSB (time x species)
#' @export
#' @family summary functions
#' @concept summary_function
#'
calcYieldCurve = function(param, effort, iSpecies, F=seq(0,2,length.out = 10)) {
yield = function(FF) {
effort[iSpecies] = FF
y = getYield( project(param, effort) )
return( y[dim(y)[1],] )
}

return( apply(as.matrix(F), 1, yield) )

}

from mizer.

gustavdelius avatar gustavdelius commented on August 23, 2024

Thank you Ken. That code would calculate the yield in year 100 after the change in fishing effort starting from the current initial condition (because the default for t_max in project() is 100). Is that really what we want?

How would you use the yield curve while calibrating the model?

from mizer.

gustavdelius avatar gustavdelius commented on August 23, 2024

Hi @Kenhasteandersen , thanks for contributing your code. I have for now moved it to the mizerExperimental package because it needs some work before it fits in nicely with the rest of mizer, see sizespectrum/mizerExperimental#6. All non-core code that can be developed first in mizerExperimental should first be developed there.

from mizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.