1 #ifndef STAN__MATH__ODE__COUPLED_ODE_SYSTEM_HPP
2 #define STAN__MATH__ODE__COUPLED_ODE_SYSTEM_HPP
26 template <
typename F,
typename T1,
typename T2>
47 const std::vector<double>&
x_;
67 const std::vector<double>& y0,
68 const std::vector<double>& theta,
69 const std::vector<double>& x,
70 const std::vector<int>& x_int,
99 std::vector<double>& dy_dt,
101 dy_dt = f_(t,y,theta_dbl_,x_,x_int_,msgs_);
104 static_cast<double*>(0));
129 std::vector<double> state(
size_, 0.0);
130 for (
int n = 0; n <
N_; n++)
131 state[n] = y0_dbl_[n];
145 std::vector<std::vector<double> >
void operator()(const std::vector< double > &y, std::vector< double > &dy_dt, double t)
Calculates the derivative of the coupled ode system with respect to the specified state at the specif...
const std::vector< double > & x_
const std::vector< int > & x_int_
const std::vector< double > & y0_dbl_
const std::vector< double > & theta_dbl_
std::vector< double > initial_state()
Returns the initial state of the coupled system, which is identical to the base ODE original state in...
int size() const
Returns the size of the coupled system.
coupled_ode_system(const F &f, const std::vector< double > &y0, const std::vector< double > &theta, const std::vector< double > &x, const std::vector< int > &x_int, std::ostream *msgs)
Construct the coupled ODE system from the base system function, initial state, parameters, data and a stream for messages.
std::vector< std::vector< double > > decouple_states(const std::vector< std::vector< double > > &y)
Returns the base portion of the coupled state.
int size(const std::vector< T > &x)
Base template class for a coupled ordinary differential equation system, which adds sensitivities to ...
bool check_matching_sizes(const char *function, const T_y1 &y1, const char *name1, const T_y2 &y2, const char *name2, T_result *result)