FIMS  v0.9.3
Loading...
Searching...
No Matches
rcpp_maturity.hpp
Go to the documentation of this file.
1
9#ifndef FIMS_INTERFACE_RCPP_RCPP_OBJECTS_RCPP_MATURITY_HPP
10#define FIMS_INTERFACE_RCPP_RCPP_OBJECTS_RCPP_MATURITY_HPP
11
12#include "../../../population_dynamics/maturity/maturity.hpp"
14
20 public:
24 static uint32_t id_g;
34 static std::map<uint32_t, std::shared_ptr<MaturityInterfaceBase>>
36
41 this->id = MaturityInterfaceBase::id_g++;
42 /* Create instance of map: key is id and value is pointer to
43 MaturityInterfaceBase */
44 // MaturityInterfaceBase::live_objects[this->id] = this;
45 }
46
53
58
62 virtual uint32_t get_id() = 0;
63
68 virtual double evaluate(double x) = 0;
69};
70
76 public:
85
91 std::make_shared<LogisticMaturityInterface>(*this);
94 }
95
105
110
115 virtual uint32_t get_id() { return this->id; }
116
122 virtual double evaluate(double x) {
125 LogisticMat.inflection_point[0] = this->inflection_point[0].initial_value_m;
126 LogisticMat.slope.resize(1);
127 LogisticMat.slope[0] = this->slope[0].initial_value_m;
128 return LogisticMat.evaluate(x);
129 }
130
135 virtual void finalize() {
136 if (this->finalized) {
137 // log warning that finalize has been called more than once.
138 FIMS_WARNING_LOG("Logistic Maturity " + fims::to_string(this->id) +
139 " has been finalized already.");
140 }
141
142 this->finalized = true; // indicate this has been called already
143
144 std::shared_ptr<fims_info::Information<double>> info =
146
148
149 // search for maturity in Information
150 it = info->maturity_models.find(this->id);
151 // if not found, just return
152 if (it == info->maturity_models.end()) {
153 FIMS_WARNING_LOG("Logistic Maturity " + fims::to_string(this->id) +
154 " not found in Information.");
155 return;
156 } else {
157 std::shared_ptr<fims_popdy::LogisticMaturity<double>> mat =
158 std::dynamic_pointer_cast<fims_popdy::LogisticMaturity<double>>(
159 it->second);
160
161 for (size_t i = 0; i < inflection_point.size(); i++) {
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;
165 } else {
166 this->inflection_point[i].final_value_m = mat->inflection_point[i];
167 }
168 }
169
170 for (size_t i = 0; i < slope.size(); i++) {
171 if (this->slope[i].estimation_type_m.get() == "constant") {
172 this->slope[i].final_value_m = this->slope[i].initial_value_m;
173 } else {
174 this->slope[i].final_value_m = mat->slope[i];
175 }
176 }
177 }
178 }
179
186 virtual std::string to_json() {
187 std::stringstream ss;
188 ss << "{\n";
189 ss << " \"module_name\": \"Maturity\",\n";
190 ss << " \"module_type\": \"Logistic\",\n";
191 ss << " \"module_id\": " << this->id << ",\n";
192
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 ";
201
202 ss << "{\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";
210
211 ss << "}";
212
213 return ss.str();
214 }
215
216#ifdef TMB_MODEL
217
218 template <typename Type>
220 std::shared_ptr<fims_info::Information<Type>> info =
222
223 std::shared_ptr<fims_popdy::LogisticMaturity<Type>> maturity =
224 std::make_shared<fims_popdy::LogisticMaturity<Type>>();
225
226 // set relative info
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() ==
233 "fixed_effects") {
234 ss.str("");
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]);
239 }
240 if (this->inflection_point[i].estimation_type_m.get() ==
241 "random_effects") {
242 ss.str("");
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]);
247 }
248 }
249
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") {
254 ss.str("");
255 ss << "Maturity." << this->id << ".slope." << this->slope[i].id_m;
256 info->RegisterParameterName(ss.str());
257 info->RegisterParameter(maturity->slope[i]);
258 }
259 if (this->slope[i].estimation_type_m.get() == "random_effects") {
260 ss.str("");
261 ss << "Maturity." << this->id << ".slope." << this->slope[i].id_m;
262 info->RegisterRandomEffect(maturity->slope[i]);
263 info->RegisterRandomEffectName(ss.str());
264 }
265 }
266
267 // add to Information
268 info->maturity_models[maturity->id] = maturity;
269
270 return true;
271 }
272
277 virtual bool add_to_fims_tmb() {
280
281 return true;
282 }
283
284#endif
285};
286
287#endif
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
std::map< uint32_t, std::shared_ptr< fims_popdy::MaturityBase< Type > > > maturity_models
Definition information.hpp:96
std::map< uint32_t, std::shared_ptr< fims_popdy::MaturityBase< Type > > >::iterator maturity_models_iterator
Definition information.hpp:100
static std::shared_ptr< Information< Type > > GetInstance()
Returns a singleton Information object for type T.
Definition information.hpp:237
#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