Randomly removes individuals from the patches according to the extinction rate parameter.
More...
|
| | LCE_Patch_Extinction () |
| |
| virtual | ~LCE_Patch_Extinction () |
| |
| bool | set_matrix_param (TMatrix *mat, string name) |
| |
| void | do_flush (Patch *patch) |
| |
| void | do_remove (age_idx AGE, Patch *patch) |
| |
| unsigned int | get_harvest_size (age_idx AGE, Patch *patch) |
| |
| virtual bool | setParameters () |
| |
| virtual void | execute () |
| |
| virtual LifeCycleEvent * | clone () |
| |
| virtual void | loadFileServices (FileServices *loader) |
| |
| virtual void | loadStatServices (StatServices *loader) |
| |
| virtual bool | resetParameterFromSource (std::string param, SimComponent *cmpt) |
| |
| virtual age_t | removeAgeClass () |
| |
| virtual age_t | addAgeClass () |
| |
| virtual age_t | requiredAgeClass () |
| |
| | LifeCycleEvent (const char *name, const char *trait_link) |
| | Cstor. More...
|
| |
| virtual | ~LifeCycleEvent () |
| |
| virtual void | init (Metapop *popPtr) |
| | Sets the pointer to the current Metapop and the trait link if applicable. More...
|
| |
| virtual bool | attach_trait (string trait) |
| |
| virtual void | set_paramset (std::string name, bool required, SimComponent *owner) |
| |
| virtual void | set_event_name (std::string &name) |
| | Set the name of the event (name of the ParamSet) and add the corresponding parameter to the set. More...
|
| |
| virtual void | set_event_name (const char *name) |
| |
| virtual string & | get_event_name () |
| | Accessor to the LCE's name. More...
|
| |
| virtual int | get_rank () |
| | Accessor to the LCE rank in the life cycle. More...
|
| |
| virtual void | set_pop_ptr (Metapop *popPtr) |
| | Accessors for the population pointer. More...
|
| |
| virtual Metapop * | get_pop_ptr () |
| |
| | SimComponent () |
| |
| virtual | ~SimComponent () |
| |
| virtual void | loadUpdaters (UpdaterServices *loader) |
| | Loads the parameters and component updater onto the updater manager. More...
|
| |
| virtual void | set_paramset (ParamSet *paramset) |
| | Sets the ParamSet member. More...
|
| |
| virtual void | set_paramsetFromCopy (const ParamSet &PSet) |
| | Reset the set of parameters from a another set. More...
|
| |
| virtual ParamSet * | get_paramset () |
| | ParamSet accessor. More...
|
| |
| virtual void | add_parameter (Param *param) |
| | Interface to add a parameter to the set. More...
|
| |
| virtual void | add_parameter (std::string Name, param_t Type, bool isRequired, bool isBounded, double low_bnd, double up_bnd) |
| | Interface to add a parameter to the set. More...
|
| |
| virtual void | add_parameter (std::string Name, param_t Type, bool isRequired, bool isBounded, double low_bnd, double up_bnd, ParamUpdaterBase *updater) |
| | Interface to add a parameter and its updater to the set. More...
|
| |
| virtual Param * | get_parameter (std::string name) |
| | Param getter. More...
|
| |
| virtual double | get_parameter_value (std::string name) |
| | Param value getter. More...
|
| |
| virtual string | get_name () |
| | Returnd the name of the ParamSet, i.e. More...
|
| |
| virtual bool | has_parameter (std::string name) |
| | Param getter. More...
|
| |
Randomly removes individuals from the patches according to the extinction rate parameter.
Sets the patches extinction flag accordingly.
| void LCE_Patch_Extinction::execute |
( |
| ) |
|
|
virtual |
Implements LifeCycleEvent.
287 message(
"LCE_Patch_Extinction::execute ");
288 unsigned int cnt = 0;
313 message(
"(%i extinct patches)\n",cnt);
void do_remove(age_idx AGE, Patch *patch)
Definition: LCEmisc.cc:328
void do_flush(Patch *patch)
Definition: LCEmisc.cc:319
Second class in the metapopulation design structure, between the Metapop and Individual classes.
Definition: metapop.h:432
unsigned int get_K()
Definition: metapop.h:482
bool get_isExtinct()
Definition: metapop.h:486
void message(const char *message,...)
Definition: output.cc:40
#define ALL
All ages age class flag.
Definition: types.h:56
@ OFFSx
Definition: types.h:42
@ ADLTx
Definition: types.h:42
References _by_proportion, _by_size, _extinction_threshold, LifeCycleEvent::_popPtr, _Xtion_rate, ADLTx, ALL, do_flush(), do_remove(), TMatrix::get(), Patch::get_isExtinct(), Patch::get_K(), Metapop::getPatch(), Metapop::getPatchNbr(), message(), OFFSx, Patch::size(), and RAND::Uniform().
| bool LCE_Patch_Extinction::set_matrix_param |
( |
TMatrix * |
mat, |
|
|
string |
name |
|
) |
| |
265 error(
"The \"%s\" matrix must be a one-dimensional array.\n", name.c_str());
270 error(
"The length of the \"%s\" array must be equal to the number of patches.\n", name.c_str());
This structure stores one parameter, its definition and its string argument.
Definition: param.h:54
double getValue()
Returns the argument value according to its type.
Definition: param.cc:368
bool isMatrix()
Checks if the argument is of matrix type.
Definition: param.h:172
void getMatrix(TMatrix *mat)
Sets the matrix from the argument string if the parameter is set and of matrix type.
Definition: param.cc:378
virtual Param * get_parameter(std::string name)
Param getter.
Definition: simcomponent.h:139
void reset(unsigned int rows, unsigned int cols)
Re-allocate the existing matrix with assigned rows and cols dimensions and all elements to 0.
Definition: tmatrix.h:161
unsigned int getNbRows() const
Gives the number of rows.
Definition: tmatrix.h:212
unsigned int getNbCols() const
Gives the number of columns.
Definition: tmatrix.h:215
void assign(double val)
Assigns a value to all element of the matrix.
Definition: tmatrix.h:155
int error(const char *str,...)
Definition: output.cc:77
References LifeCycleEvent::_popPtr, TMatrix::assign(), error(), SimComponent::get_parameter(), Param::getMatrix(), TMatrix::getNbCols(), TMatrix::getNbRows(), Metapop::getPatchNbr(), Param::getValue(), Param::isMatrix(), and TMatrix::reset().
Referenced by setParameters().
| bool LCE_Patch_Extinction::setParameters |
( |
| ) |
|
|
virtual |
Implements SimComponent.
194 error(
"Please give one of the following parameter: \"extinction_rate\", \"extinction_size\", or \"extinction_proportion\".\n");
198 warning(
"Both \"extinction_size\" and \"extinction_proportion\" are set, using sizes only.\n");
205 error(
"\"extinction_size_distribution\" is set but the \"extinction_size\" parameter is not!\n");
226 error(
"Standard deviation of the normal distribution for the harvesting size distribution is missing!\n");
235 error(
"Standard deviation of the lognormal distribution for the harvesting size distribution is missing!\n");
244 error(
"Distribution \"%s\" is not a valid option for \"harvest_size_distribution\"\n",
unsigned int rand_exp(double mean)
Definition: LCEmisc.h:127
unsigned int rand_lognormal(double mean)
Definition: LCEmisc.h:128
unsigned int rand_uniform(double max)
Definition: LCEmisc.h:124
string _harvest_distribution
Name of the distribution to use.
Definition: LCEmisc.h:112
unsigned int rand_poisson(double mean)
Definition: LCEmisc.h:125
bool set_matrix_param(TMatrix *mat, string name)
Definition: LCEmisc.cc:255
unsigned int rand_gaussian(double mean)
Definition: LCEmisc.h:126
string getArg(string name)
Accessor to the parameters argument string.
Definition: param.h:300
virtual double get_parameter_value(std::string name)
Param value getter.
Definition: simcomponent.h:143
ParamSet * _paramSet
The parameters container.
Definition: simcomponent.h:48
A class to handle matrix in params, coerces matrix into a vector of same total size.
Definition: tmatrix.h:50
void warning(const char *str,...)
Definition: output.cc:58
References _by_proportion, _by_size, _extinction_threshold, _harvest_dist_stdev, _harvest_distribution, _harvest_proportion, _harvest_size, _harvest_size_varies, SimComponent::_paramSet, _rand_size_fct, _Xtion_rate, error(), SimComponent::get_parameter(), SimComponent::get_parameter_value(), ParamSet::getArg(), rand_exp(), rand_gaussian(), rand_lognormal(), rand_poisson(), rand_uniform(), set_matrix_param(), and warning().
Referenced by LCE_Patch_Extinction().