- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用推力在 CUDA 中求解具有 6 个变量的 ODE。我的程序在这里。
#include <iostream>
#include <cmath>
#include <utility>
#include <cstdlib>
#include <thrust/device_vector.h>
#include <thrust/reduce.h>
#include <thrust/functional.h>
#include <boost/numeric/odeint.hpp>
#include <boost/numeric/odeint/external/thrust/thrust_algebra.hpp>
#include <boost/numeric/odeint/external/thrust/thrust_operations.hpp>
#include <boost/numeric/odeint/external/thrust/thrust_resize.hpp>
using namespace std;
using namespace boost::numeric::odeint;
typedef double value_type;
typedef thrust::device_vector< value_type > state_type;
const value_type n1 = 10.0;
struct Goodwin_system
{
struct Goodwin_functor
{
template< class T >
__host__ __device__
void operator()( T t ) const
{
value_type x1 = thrust::get< 0 >( t );
value_type x2 = thrust::get< 1 >( t );
value_type x3 = thrust::get< 2 >( t );
value_type x4 = thrust::get< 3 >( t );
value_type x5 = thrust::get< 4 >( t );
value_type x6 = thrust::get< 5 >( t );
value_type a = thrust::get< 6 >( t );// For differnt values of a we will get different ODE
thrust::get< 7 >( t ) = a * (77.3*(pow(0.001,n1)/(pow(0.001,n1) + pow(x3,n1))) - x1);
thrust::get< 8 >( t ) = a * (x1-x2);
thrust::get< 9 >( t ) = a * (x2-x3);
thrust::get< 10 >( t ) = a * (x3-x4);
thrust::get< 11 >( t ) = a * (x4-x5);
thrust::get< 12 >( t ) = a * (x5-x6);
}
};
Goodwin_system( size_t N , const state_type &aa ) // aa is for different values of the parameter a
: m_N( N ) , m_aa( aa ) { }
template< class State , class Deriv >
void operator()( const State &x , Deriv &dxdt , value_type t ) const
{
thrust::for_each(
thrust::make_zip_iterator( thrust::make_tuple(
boost::begin( x ) ,
boost::begin( x ) + m_N ,
boost::begin( x ) + 2 * m_N ,
boost::begin( x ) + 3 * m_N ,
boost::begin( x ) + 4 * m_N ,
boost::begin( x ) + 5 * m_N ,
m_aa.begin() ,
boost::begin( dxdt ) ,
boost::begin( dxdt ) + m_N ,
boost::begin( dxdt ) + 2 * m_N,
boost::begin( dxdt ) + 3 * m_N,
boost::begin( dxdt ) + 4 * m_N,
boost::begin( dxdt ) + 5 * m_N ) ) ,
thrust::make_zip_iterator( thrust::make_tuple(
boost::begin( x ) + m_N ,
boost::begin( x ) + 2 * m_N ,
boost::begin( x ) + 3 * m_N ,
boost::begin( x ) + 4 * m_N ,
boost::begin( x ) + 5 * m_N ,
boost::begin( x ) + 6 * m_N ,
m_aa.end() ,
boost::begin( dxdt ) + m_N ,
boost::begin( dxdt ) + 2 * m_N ,
boost::begin( dxdt ) + 3 * m_N,
boost::begin( dxdt ) + 4 * m_N,
boost::begin( dxdt ) + 5 * m_N,
boost::begin( dxdt ) + 6 * m_N)) ,
Goodwin_functor() );
}
size_t m_N;
const state_type &m_aa;
};
size_t N;
void write_ans( const state_type &x , const double t )// For writing the results
{
cout<<t<<"\t";
for( size_t i=0 ; i<6*N ; ++i )
{
cout<<x[i]<<"\t";
}
cout<<endl;
}
const value_type dt = 0.1;
const value_type t_max = 1000.0;
int main( int argc , char* argv[] )
{
N = argc > 1 ? atoi(argv[1]) : 1000;// for 1000 oscillator
vector< value_type > aa_host( N );
const value_type aa_min = value_type(0.01);
for( size_t i=0 ; i<N ; ++i )
aa_host[i] =(i+1)*aa_min;// Generate differnt a values for each iteration
state_type aa = aa_host;
//[ thrust_Goodwin_parameters_integration
state_type x( 6 * N );
// initialize x,y,z
thrust::fill( x.begin() , x.end() , value_type(0.2) );
typedef runge_kutta4< state_type , value_type , state_type , value_type ,
thrust_algebra , thrust_operations > stepper_type;
Goodwin_system Goodwin(N , aa);
integrate_const( stepper_type() , Goodwin , x , value_type(0.1) , t_max , dt, write_ans);
return 0;
}
当我尝试编译它时,显示错误
“错误:重载函数“thrust::make_tuple”的实例不匹配参数列表”
我可以毫无错误地求解具有 4 个变量的 ODE。 tuple是否只支持最多10个
元素?解决这个问题的方法是什么?
最佳答案
正如 documentation 中明确定义的那样, thrust::tuple
静态模板化最多 10 个条目。除非使用更多条目重新实现您自己的版本,否则这是该类不可协商的限制。
关于c++ - 使用推力的 ODE 求解器的 CUDA 编程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44983883/
我正在使用混合效应模型,并且由于我的方法的特殊性我需要解决下面模型的积分,然后制作图表获得的估计值。 换句话说,我需要求解下面的积分: 其中,di^2 是我模型中的 Var3,dh 是混合效应模型对应
我有一个方程组,我想用数值方法求解它。给定起始种子,我想得到一个接近的解决方案。让我解释。 我有一个常量向量,X,值: X <- (c(1,-2,3,4)) 和一个向量 W 的权重: W <- (c(
假设我有以下方程组: a * b = 5 sqrt(a * b^2) = 10 如何求解 R 中 a 和 b 的这些方程? 我想这个问题可以说是一个优化问题,具有以下功能......? fn <- f
我在 R 中有一个简单的通量模型。它归结为两个微分方程,对模型中的两个状态变量进行建模,我们将它们称为 A和 B .它们被计算为四个分量通量的简单差分方程 flux1-flux4 , 5 个参数 p1
R有什么办法吗?求解给定单变量函数的反函数?动机是我以后告诉R使用值向量作为反函数的输入,以便它可以吐出反函数值。 例如,我有函数 y(x) = x^2 ,逆是 y = sqrt(x) .有没有办法R
我在字符串中有以下方程 y = 18774x + 82795 求解x我会这样做:- x = (y-82795) / 18774 我知道y的值 但是方程一直在变化,并且始终采用字符串格式 是否可以简单地
如果我用 diophantine(2*x+3*y-5*z-77) 我收到了这个结果。 {(t_0, -9*t_0 - 5*t_1 + 154, -5*t_0 - 3*t_1 + 77)} 到目前为止还
我正在尝试求解仅限于正解的 ODE,即: dx/dt=f(x) x>=0。 在 MATLAB 中这很容易实现。 R 是否有任何变通方法或包来将解决方案空间限制为仅正值? 这对我来说非常重要,不幸的是没
下面的 ANTLR 文法中的 'expr' 规则显然是相互左递归的。作为一个 ANTLR 新手,我很难解决这个问题。我已经阅读了 ANTLR 引用书中的“解决非 LL(*) 冲突”,但我仍然没有看到解
我有一个关于在 R 中求解函数的可能性的非常基本的问题,但知道答案确实有助于更好地理解 R。 我有以下等式: 0=-100/(1+r)+(100-50)/(1+r)^2+(100-50)/(1+r)^
我正在编写使用递归回溯来解决 8 个皇后问题的代码(将 n 个国际象棋皇后放在 n × n 的棋盘上,这样皇后就不会互相攻击)。 我的任务是创建两个方法:编写一个公共(public)solveQuee
我不知道在以下情况下如何进行,因为最后一个方程没有所有 4 个变量。所以使用了等式下面的代码,但这是错误的......有谁知道如何进行? 方程: 3a + 4b - 5c + d = 10 2a +
假设我们有这个递归关系,它出现在 AVL 树的分析中: F1 = 1 F2 = 2 Fn = Fn - 1 + Fn - 2 + 1(其中 n ≥ 3) 你将如何解决这个递归以获得 F(n) 的封闭形
在Maple中,有谁知道是否存在一个函数来求解变量?例如,我正在尝试求解 r 的 solve4r=(M-x^y)*(r^(-1)) mod (p-1)。所以我知道 M、x、y 和 p 的值,但不知道
我也问过这个here在声音设计论坛上,但问题是沉重的计算机科学/数学,所以它实际上可能属于这个论坛: 因此,通过读取文件中的二进制文件,我能够成功地找到关于 WAV 文件的所有信息,除了 big si
我有以下问题: 设 a 和 b 为 boolean 变量。是否可以设置 a 和 b 的值以使以下表达式的计算结果为 false? b or (((not a) or (not a)) or (a or
我需要用 C 求解这个超越方程: x = 2.0 - 0.5sen(x) 我试过这个: double x, newx, delta; x = 2.0 - 0.5; newx = sin(x); del
我在 Windows 上使用 OpenCV 3.1。 一段代码: RNG rng; // random number generator cv::Mat rVec = (cv::Mat_(3, 1)
我正在尝试求解一个包含 3 个变量和数量可变的方程的方程组。 基本上,系统的长度在 5 到 12 个方程之间,无论有多少个方程,我都试图求解 3 个变量。 看起来像这样: (x-A)**2 + (y-
我正在尝试为有限差分法设计一种算法,但我有点困惑。所讨论的 ODE 是 y''-5y'+10y = 10x,其中 y(0)=0 且 y(1)=100。所以我需要一种方法来以某种方式获得将从关系中乘以“
我是一名优秀的程序员,十分优秀!