传递参数以增强C ++中的odeint [英] passed parameters to boost odeint in C++

查看:94
本文介绍了传递参数以增强C ++中的odeint的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

答案很有帮助,但我想知道如何将不同类型的多个参数传递到ODE模型(也许在结构中).对于我的直接用例,我需要能够传递一个std::array<double, 6>,两个std::vector<std::vector<double>>和两个两个double标量,以便总共传递四个参数.在链接的示例以及 harmonic_oscillator.cpp ,只有一个double传递的参数.谢谢.

This answer is helpful, but I would like to know how to pass multiple parameters of different types to the ODE model, perhaps in a struct. For my immediate use case, I need to be able to pass one std::array<double, 6>, two std::vector<std::vector<double>> and two two double scalars for a total of four parameters to be passed. In the linked example, as well as in harmonic_oscillator.cpp, there is only a single double passed parameter. Thanks.

这是我需要传递给ODE力模型并在速率方程中使用的结构的示例.

Here's an example of the struct I would need passed to the ODE force model and used within the rate equations.

struct T
{
    std::array<double, 6> IC;
    double S;
    double M;
    std::vector<std::vector<double>> C;
    std::vector<std::vector<double>> WT;
};

推荐答案

我相信我想出了一个可行的结构解决方案,但不确定它是否有任何变量/内存作用域.这是一个示例:

I believe I've come up with a struct solution that works, but am not sure if it has any variable/memory scope no-no's. Here's an example:

#include <vector>
#include <boost/numeric/odeint.hpp>

// define structure
struct T
{
    std::array<double, 6> IC;
    double                S;
};

// force model
class harm_osc
{
    struct T T1;

public:
    harm_osc(struct T G) : T1(G) {}

    void operator() ( const std::vector< double > &x , std::vector< double > &dxdt , const double /* t */ )
    {
        dxdt[0] = x[1];
        dxdt[1] = -x[0] - T1.IC[0]*x[1] + T1.S;
    }
};

// print integrated state solution
void write_solution( const std::vector< double > &x , const double t )
{
    printf("%-6.2f %-6.2f %-6.2f\n", t, x[0], x[1]);
}

// problem setup
int main()
{

    std::vector< double > x(2);
    x[0] = 1.0;
    x[1] = 0.0;

    struct T T2;

    T2.IC = {0.15, 0.15, 0.15, 0.15, 0.15, 0.15};
    T2.S  = 0.0;

    harm_osc ho(T2);
    boost::numeric::odeint::integrate(ho, x, 0.0, 10.0, 0.1, write_solution);

}

这篇关于传递参数以增强C ++中的odeint的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆