Giter VIP home page Giter VIP logo

delaydifference's Introduction

# CREATED  30 Aug 2013
# MODIFIED  5 Apr 2016

# AUTHOR [email protected]

"Programming is where ideas and theories meet reality", Bjarne Stroustrup

# PURPOSE 

The purpose of this project is to implement the Schnute-Deriso delay difference model in C++. This program is used 
to produce reliable estimates of specific parameters of the dynamic of a fish population. Reliability is 
assessed with simulated datasets to verify and demonstrate that this program is producing correct values 
for parameters it estimates (see subdirectories "Test the code").

# BACKGROUND

This directory contains a C++ implementation of the delay difference (Schnute 1984, Deriso 1980). The program relies on 
2 input files to perform its computation: (1) fisheries data (catch and efforts at specific timesteps) and 
(2) parameters fixed (model timesteps, weight at recruitment, Brody growth coefficients, ...) or to be estimated by fitting this model to data. 

Several options were implemented, each with specific capability: for example, estimate natural mortality or not. 
The files common to all versions are in the same directory as this file while those specific to each version are in 
their respective directory Option2, Option3, etc... 

The model runs at any timesteps (daily, weekly, monthly but not annually as it assumes a distribution of 
recruitment within years) desired by the user.

# DESCRIPTION OF THE MODEL

Description of the model are available from Kienzle et al. (2014), Schnute (1984) and Deriso (1980).

# PROGRAM options

[Legacy code] estimates 7 parameters (Targeted catchability, Nontargeted catchability, sigma, Biomass1, Biomass2, vm_mean, vm_sigma) + 1 recruitment for each year of data. Natural mortality, rho, timesteps (weekly, monthly or else), etc.. were fixed in FixedParameters.h file passed as a second argument. This model was used in Kienzle (2014) using weekly timesteps.

Option2: reads fixed values for natural mortality, rho, etc... from a file (InputParameterDescription.csv) provided by a user. And the characteristics of parameters to be estimated, such as starting value and upper/lower limit of for example targeted catchability, from that same file. This file contains Comma Separated Values (csv) for each parameter of the model. It needs to contains very specific Symbols and Short Names for the program to attribute the values to the correct variables using these keywords.

Option3: this version estimates natural mortality. This is something a bit controversial in fisheries research literature up to 2014 but testing shows that the algorithm converges consistently to the correct values; uncertainties are larger using monthly timesteps rather than weekly -- the larger number of data helps the model to characterise more precisely the parameters of the model.

Option 4: this version estimates specific recruitment-timing specific for each year.

# COMPILE
To compile the program with the option you desire to use, go into the option directory you are interested in and use make to compile it.

# USAGE
DelayDifference_Option2 Data/SimData4.txt InputParameterDescription.csv

# TO DO LIST
1. [DONE on 2014-05-29] the algorithm get stuck around -M_PI or M_PI, it would be good to change the code to get a cyclic function rather than a "no through way"
2. [ADDED on 1 April 2016] modify the program to use as input a single csv file containing a list of starting values for parameters to be estimated and the fixed parameters used in the model
3. [ADDED on 5 April 2016] output all parameters, fixed and estimate, of a delay difference model into a csv file called Results/DelayDifferenceModelParameters.csv
4. [ADDED on 5 April 2016] automatic test in Makefile with: make testDelayDifference 

## USEFUL COMMANDS

# display a file nicely formatted
column -t -s $',' InputParameterDescription.csv
cut -f2-3,5-6 -d, Results/DelayDifferenceModelParameters.csv | column -t -s "$,"

# REFERENCES
Deriso (1980) Harvesting strategies and parameter estimation for an age-structured model. Can. J. Fish. Aquat. Sci. 37, 268-282
Kienzle (2014) "Environmental and fishing effects on the dynamics of brown tiger prawn (Penaeus esculentus) in Moreton Bay (Australia)", Fisheries Research, Volume 155, July 2014, Pages 138-148
Schnute (1985) A general theory for analysis of catch and effort data. Can. J. Fish. Aquat. Sci. 42, 414-429

############################################################################################################################################
# Libraries dependencies
############################################################################################################################################

This software relies on MINUIT, available through ROOT (root.cern.ch, see below how to install) or
independently at www.cern.ch/minuit

This software relies on the C++ library PROB by John Burkardt (http://people.sc.fsu.edu/~jburkardt/c_src/c_src.html)

This software relies on BOOST libraries

# Installing ROOT
install ROOT (from root.cern.ch) enabling minuit2 using the following command
./configure --prefix=/usr/local --enable-minuit2
make 
make install

install library PROB that contains probability distribution function (see ~/mystuff/Software/Prob_library)

To link against a static minuit library,
install minuit from http://seal.web.cern.ch/seal/snapshot/work-packages/mathlibs/minuit/


delaydifference's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

tokami

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.