9#ifndef FIMS_INTERFACE_RCPP_RCPP_OBJECTS_RCPP_MATURITY_HPP
10#define FIMS_INTERFACE_RCPP_RCPP_OBJECTS_RCPP_MATURITY_HPP
12#include "../../../population_dynamics/maturity/maturity.hpp"
34 static std::map<uint32_t, std::shared_ptr<MaturityInterfaceBase>>
91 std::make_shared<LogisticMaturityInterface>(*
this);
125 LogisticMat.inflection_point[0] = this->inflection_point[0].initial_value_m;
127 LogisticMat.slope[0] = this->slope[0].initial_value_m;
139 " has been finalized already.");
144 std::shared_ptr<fims_info::Information<double>>
info =
150 it =
info->maturity_models.find(this->
id);
154 " not found in Information.");
157 std::shared_ptr<fims_popdy::LogisticMaturity<double>>
mat =
158 std::dynamic_pointer_cast<fims_popdy::LogisticMaturity<double>>(
162 if (this->inflection_point[
i].estimation_type_m.
get() ==
"constant") {
163 this->inflection_point[
i].final_value_m =
164 this->inflection_point[
i].initial_value_m;
166 this->inflection_point[
i].final_value_m =
mat->inflection_point[
i];
171 if (this->slope[
i].estimation_type_m.
get() ==
"constant") {
172 this->slope[
i].final_value_m = this->slope[
i].initial_value_m;
174 this->slope[
i].final_value_m =
mat->slope[
i];
187 std::stringstream
ss;
189 ss <<
" \"module_name\": \"Maturity\",\n";
190 ss <<
" \"module_type\": \"Logistic\",\n";
191 ss <<
" \"module_id\": " << this->
id <<
",\n";
193 ss <<
" \"parameters\": [\n{\n";
194 ss <<
" \"name\": \"inflection_point\",\n";
195 ss <<
" \"id\":" << this->inflection_point.
id_m <<
",\n";
196 ss <<
" \"type\": \"vector\",\n";
197 ss <<
" \"dimensionality\": {\n";
198 ss <<
" \"header\": [null],\n";
199 ss <<
" \"dimensions\": [1]\n},\n";
200 ss <<
" \"values\":" << this->inflection_point <<
"},\n ";
203 ss <<
" \"name\": \"slope\",\n";
204 ss <<
" \"id\":" << this->slope.
id_m <<
",\n";
205 ss <<
" \"type\": \"vector\",\n";
206 ss <<
" \"dimensionality\": {\n";
207 ss <<
" \"header\": [null],\n";
208 ss <<
" \"dimensions\": [1]\n},\n";
209 ss <<
" \"values\":" << this->slope <<
"}]\n";
218 template <
typename Type>
220 std::shared_ptr<fims_info::Information<Type>>
info =
223 std::shared_ptr<fims_popdy::LogisticMaturity<Type>> maturity =
224 std::make_shared<fims_popdy::LogisticMaturity<Type>>();
227 maturity->id = this->
id;
228 std::stringstream
ss;
229 maturity->inflection_point.resize(this->inflection_point.
size());
230 for (
size_t i = 0;
i < this->inflection_point.
size();
i++) {
231 maturity->inflection_point[
i] = this->inflection_point[
i].initial_value_m;
232 if (this->inflection_point[
i].estimation_type_m.
get() ==
235 ss <<
"Maturity." << this->
id <<
".inflection_point."
236 << this->inflection_point[
i].
id_m;
237 info->RegisterParameterName(
ss.str());
238 info->RegisterParameter(maturity->inflection_point[
i]);
240 if (this->inflection_point[
i].estimation_type_m.
get() ==
243 ss <<
"Maturity." << this->
id <<
".inflection_point."
244 << this->inflection_point[
i].
id_m;
245 info->RegisterRandomEffectName(
ss.str());
246 info->RegisterRandomEffect(maturity->inflection_point[
i]);
250 maturity->slope.resize(this->slope.
size());
251 for (
size_t i = 0;
i < this->slope.
size();
i++) {
252 maturity->slope[
i] = this->slope[
i].initial_value_m;
253 if (this->slope[
i].estimation_type_m.
get() ==
"fixed_effects") {
255 ss <<
"Maturity." << this->
id <<
".slope." << this->slope[
i].
id_m;
256 info->RegisterParameterName(
ss.str());
257 info->RegisterParameter(maturity->slope[
i]);
259 if (this->slope[
i].estimation_type_m.
get() ==
"random_effects") {
261 ss <<
"Maturity." << this->
id <<
".slope." << this->slope[
i].
id_m;
262 info->RegisterRandomEffect(maturity->slope[
i]);
263 info->RegisterRandomEffectName(
ss.str());
268 info->maturity_models[maturity->id] = maturity;
Base class for all interface objects.
Definition rcpp_interface_base.hpp:628
bool finalized
Is the object already finalized? The default is false.
Definition rcpp_interface_base.hpp:633
static std::vector< std::shared_ptr< FIMSRcppInterfaceBase > > fims_interface_objects
FIMS interface object vectors.
Definition rcpp_interface_base.hpp:638
virtual bool add_to_fims_tmb()
A virtual method to inherit to add objects to the TMB model.
Definition rcpp_interface_base.hpp:643
Rcpp interface for logistic maturity to instantiate the object from R: logistic_maturity <- methods::...
Definition rcpp_maturity.hpp:75
virtual ~LogisticMaturityInterface()
The destructor.
Definition rcpp_maturity.hpp:109
ParameterVector slope
The width of the curve at the inflection point.
Definition rcpp_maturity.hpp:84
ParameterVector inflection_point
The index value at which the response reaches 0.5.
Definition rcpp_maturity.hpp:80
LogisticMaturityInterface()
The constructor.
Definition rcpp_maturity.hpp:89
virtual uint32_t get_id()
Gets the ID of the interface base object.
Definition rcpp_maturity.hpp:115
virtual void finalize()
Extracts derived quantities back to the Rcpp interface object from the Information object.
Definition rcpp_maturity.hpp:135
LogisticMaturityInterface(const LogisticMaturityInterface &other)
Construct a new Logistic Maturity Interface object.
Definition rcpp_maturity.hpp:101
virtual std::string to_json()
Converts the data to json representation for the output.
Definition rcpp_maturity.hpp:186
virtual double evaluate(double x)
Evaluate maturity using the logistic function.
Definition rcpp_maturity.hpp:122
Rcpp interface that serves as the parent class for Rcpp maturity interfaces. This type should be inhe...
Definition rcpp_maturity.hpp:19
virtual double evaluate(double x)=0
A method for each child maturity interface object to inherit so each maturity option can have an eval...
virtual ~MaturityInterfaceBase()
The destructor.
Definition rcpp_maturity.hpp:57
virtual uint32_t get_id()=0
Get the ID for the child maturity interface objects to inherit.
static std::map< uint32_t, std::shared_ptr< MaturityInterfaceBase > > live_objects
The map associating the IDs of MaturityInterfaceBase to the objects. This is a live object,...
Definition rcpp_maturity.hpp:35
uint32_t id
The local id of the MaturityInterfaceBase object.
Definition rcpp_maturity.hpp:28
MaturityInterfaceBase(const MaturityInterfaceBase &other)
Construct a new Maturity Interface Base object.
Definition rcpp_maturity.hpp:52
MaturityInterfaceBase()
The constructor.
Definition rcpp_maturity.hpp:40
static uint32_t id_g
The static id of the MaturityInterfaceBase object.
Definition rcpp_maturity.hpp:24
An Rcpp interface class that defines the ParameterVector class.
Definition rcpp_interface_base.hpp:144
void resize(size_t size)
Resizes a ParameterVector to the desired length.
Definition rcpp_interface_base.hpp:295
size_t size()
Returns the size of a ParameterVector.
Definition rcpp_interface_base.hpp:288
uint32_t id_m
The local ID of the Parameter object.
Definition rcpp_interface_base.hpp:157
Parameter & get(size_t pos)
An internal accessor for calling a position of a ParameterVector from R.
Definition rcpp_interface_base.hpp:267
#define FIMS_WARNING_LOG(MESSAGE)
Definition def.hpp:648
void clear_internal()
Clears the internal objects.
Definition rcpp_interface.hpp:235
The Rcpp interface to declare objects that are used ubiquitously throughout the Rcpp interface,...
LogisticMaturity class that returns the logistic function value from fims_math.
Definition logistic.hpp:24
fims::Vector< Type > inflection_point
Definition logistic.hpp:26