Questions tagged [odeint]

Odeint is a modern C++ library for numerically solving Ordinary Differential Equations.

Odeint is designed in a very flexible way such that the algorithms are completely independent of the underlying containers and even from the basic algebraic computations. That means odeint works not only with the standard containers like vector< double > or array< double , N > but also nicely cooperates with many other libraries.

Odeint can solve ODEs on GPUs by using nVidia's CUDA technology.

512 questions
-3
votes
1 answer

Is there any Tool for analyzing the Influence of variable

When you write a program with lots of code, its difficult to find out which values have a big influence of your final result. In my case i have got a few differential equations which I solve with odeint. It would take a lot of time to find out which…
qwertz
  • 619
  • 1
  • 7
  • 15
-6
votes
1 answer

Solving a differential equation in python with odeint

I am trying to solve that differential equation R·(dq/dt)+(q/C)=Vi·sin(w·t), so i have the this code: import numpy as np from numpy import * import matplotlib.pyplot as plt from math import pi, sin from scipy.integrate import odeint C=10e-9 R=1000…
1 2 3
34
35