Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
796 views

Differential Equations in Java

I am trying to create a simple simulation program of SIR-epidemics model in java. Basically, SIR is defined by a system of three differential equations: S'(t) = - l(t) * S(t) I'(t) = l(t) * S(t) - ...
4
votes
1answer
89 views

event location questions in MATLAB

Suppose in matlab the following: [t, x, te, xe, ie] = ode15s(@myfunc, [tStart tFinal], x0, odeset('Events', @events)); Question 1 1a) The function events is called only after a successful step of ...
4
votes
2answers
202 views

is there a c++ library for ordinary differential equation (ODE) solvers?

More specifically, i'm interested in 8th order Dormand-Prince embedded method, it's based on Runge-Kutta, and stiff equations. I use Numerical Recipes 3 but i often have trouble compiling their ...
4
votes
1answer
240 views

vector<double> faster than double*: why?

Here's a loop that I've tried with std::vector and with plain old double*. For 10 million elements, the vector version consistently runs in about 80% of the time that the double* version takes; for ...
3
votes
1answer
200 views

Matlab ode45. How to change a parameter inside it while calling it?

I'm new with Matlab. I hope you can help me. I have to solve a system of ODEs using ODE45 function. Here is the function which describes my equitions. function dNdt = rateEquations(t, y) ...
3
votes
2answers
588 views

Write Euler's method in Mathematica

I would like to write a function that has a loop in it which preforms the operations necessary for Euler's method. Below it my poor attempt. In[15]:= Euler[icx_,icy_,h_,b_,diffeq_] := curx; cury; ...
2
votes
2answers
86 views

Managed Vs Unmanaged Physics Engines for C#

anyone tried BEPU Physic Engine ? http://bepuphysics.codeplex.com/ its a fully managed physic engine written in C# ... i know it mostly used for XNA ( XBOX and WP7 Projects ) Because Unmanaged Codes ...
2
votes
0answers
81 views

Avoiding loops in iterative solution of ODE

I'm fitting a parametric model to some survival data with time-dependent covariates. The fitting procedure involves solving some ODEs iteratively - one ODE per time-interval per subject, but such that ...
2
votes
2answers
55 views

What ODE solver uses calculations in a stepper function for interpolation?

I average over a multiple solutions of ODEs that have different initial conditions, so it's important for all of the solutions to have values at the same times; for example, at an increment of 0.01. ...
2
votes
2answers
146 views

Plotting ODEs, Isoclines using Python

I am looking for a Python package that will allow me to plot something similar to the Java applet seen below: http://math.mit.edu/mathlets/mathlets/isoclines/ Does anyone know any ODE plotting ...
2
votes
2answers
333 views

scipy.integrate.ode with two coupled ODEs?

I'm currently trying to use SciPy's integrate.ode package to solve a pair of first-order ODEs that are coupled: say, the Lotka-Volterra predator-prey equation. However, this means during the ...
2
votes
1answer
140 views

A possible bug in odeint <-> interp1d interplay?

I'm relatively new to python and scipy, being a convert from MATLAB. I was doing a quick test of the odeint function in scipy.integrate, and came across this potential bug. Consider the following ...
2
votes
2answers
334 views

Initial conditions with a non-linear ODE in Mathematica

I'm trying to use Mathematica's NDSolve[] to compute a geodesic along a sphere using the coupled ODE: x" - (x" . x) x = 0 The problem is that I can only enter initial conditions for x(0) and x'(0) ...
2
votes
2answers
681 views

How to install python physics engine

I want a python physics engine that works on mac and makes it easy to simulate physics. I have VPython and it works fine, but it is not quite what I want. VPython just shows visual elements and all ...
2
votes
3answers
1k views

Good DirectX tutorials online?

I'm trying to make a bowling game simulation for college. Any ideas where to find a decent tutorial in DirectX9, using ode-0.9 and c++?
2
votes
2answers
407 views

How can I solve an ODE without using nested functions?

I have some differential equations that I need to solve using MATLAB's ODE solvers. While the differential equations themselves are fairly simple, they depend on a lot of "constants". These constants ...
2
votes
1answer
217 views

Physics toolkit portability

Summary: Have you ever made an interface between two -- or better yet even more -- different physics toolkits? For a online game (or at least with network physics)? How did it turn out? Lessons ...
1
vote
1answer
100 views

How to solve a stiff ode with Python?

I'm a Python beginner. I'm trying to switch some programs that I have in matlab. I need solve a stiff ode equation, whose inputs are all matrices. In matlab I use [ttT,uT] = ode23s('SST',t,fT);
1
vote
1answer
362 views

(Matlab) how to draw a phase diagram of two ODEs based on the parameters (not the x(1), x(2) in the diagram)

Dear all, I am a new user of matlab on a project about dynamic system. I have two equations, in which T0, epsilon (E), a are fixed. I want to see the phage diagram when the b and c is choosen in the ...
1
vote
1answer
116 views

How to solve nested ODE equation in R

we can use deSolve package in R for ordinary differential equations (ODE), however, I can't find a way to solve two nested ODE equation, suppose b(t)' = beta - k*b(t); a(t)' = alpha -b(t)*gamma; ...
1
vote
1answer
283 views

Finding Intersection Points between 3rd Order ODE and a line?

How can I find the intersection points between the solution of a 3rd order ODE and a line y=x? My ODE's code is sol=dsolve('D3y-4*D2y+Dy+2*y=0,y(0)=-4,Dy(0)=-6,D2y(0)=-4') x=0:2 y=subs(sol,'t',x) ...
1
vote
2answers
398 views

Best Free Ordinary Differential Equation Library in .net

I'm looking for a library to solve ODE for my university thesis' project... The library I'd like to find had to have this features: Event Calculus (something like a continuous calculus stopped by ...
1
vote
1answer
98 views

Does PyODE support composite objects?

I'm trying to create a composite object with PyODE, but I can't find any documentation regarding this. Here is some info I found: this is for ODE, the engine that PyODE is a wrapper for, and seems ...
1
vote
1answer
134 views

Help — trying to build Apache ODE source code with Buildr

i am trying to build APACHE ODE source code with Buildr using Ruby. I installed ruby and installed Buildr with it, but when i run the command rake package on the root of APACHE ODE source code it ...
0
votes
1answer
36 views

Matlab solving ODE applied to State Space System, inputs time dependent

I've got at State System, with "forced" inputs at bounds. My SS equation is: zp = A*z * B. (A is a square matrix, and B colunm) If B is a step (along the time of experience), there is no problem, ...
0
votes
1answer
23 views

Open Dynamics Engine for 2D

I already have some experience with ODE, so it's my first choice for the next project, which will be 2D. Looking around, it seems that people achieve this by pressing 3d objects against z-aligned ...
0
votes
0answers
42 views

error “ must return a column vector” in matlab

My ODE equations are as below dIdt = -Kd.*I - ((Fev.*I.*P0.*(1 - X).*Kp)./(1 + Fev.*X)); dXdt = Kp.*(1 - X).*P0; dP0dt = (-Fev.*P0.*P0*(1 - X)./(1 + Fev.*X)).*Kp + 2*F.*Kd*I - Kt.*P0.*P0; dP1dt = ...
0
votes
0answers
51 views

Collision detection with ODE and other physics engines

My boss gave me this source code and let me add rigid body physics simulate support. Basically this source code simulates a large scene with a lot of buildings and traffic in it. I've checked the ...
0
votes
1answer
55 views

setting up ODE (open dynamics engine) to work in visual studio

I am trying to set up the ODE source code to work in visual studio. I have followed to instructions given in this link, which say to cd to the build directory and run the commnad premake4 vs2008. that ...
0
votes
1answer
86 views

Java Programming, trying to make an ODE solver library (New to object oriented coding!)

I'm trying to program an ODE solver (similar to ODE45 in MATLAB). I want this solver to be "stand alone", ie I can pass it the name of the ODE I want it to solve, and it runs the code for that ...
0
votes
2answers
153 views

Inertia must be positive definite

I'm writing a game in C++ using Open Dynamics Engine. When I run it, i get these errors: ODE Message 2: inertia must be positive definite in dMassCheck() File ../../../../../ode/src/mass.cpp Line 53 ...
0
votes
0answers
45 views

GSL ODEIV2: change Y in ODE system function

I'm using gsl_odeiv2 for solving equations of the Izhikevich neuron. But the model also includes that I have to reset y (in case of the model, called v and u) when some threshold is exceeded. I want ...
0
votes
1answer
70 views

maxima's ode solver

I downloaded and installed sage because I needed an ODE solver.I think that Maxima is relatively restricted in that part as it doesn't seem to solve almost basic ODEs.I appreciate all the effort ...
0
votes
0answers
19 views

PAL ODE crash, in palODECapsuleGeometry constructor

I'm trying to run palBeginner.exe from demos supplied with PAL (physics abstraction layer) package. I'm using ODE implementation. Got a crash due to uninitialized pointer in palODECapsuleGeometry ...
0
votes
1answer
215 views

How to add white noise process term for a couple of ODEs, assuming the Gaussian distribution?

This question has already confused me several days. While I referred to senior students, they also cannot give a reply. We have ten ODEs, into which each a noise term should be added. The noise is ...
0
votes
1answer
129 views

How to make an inclined plane in ODE?

I am wondering how to make an inclined plane using ODE that a block will slide down. I don't want the plane to be infinite; ideally I want objects to fall off the edge of it so I probably actually ...
0
votes
1answer
84 views

Maple ODE solving, Graphic is not complete. Why?

So we try to solve simple ODE. We use text book (warning - russian). This is code presented as sample in book (page 18): > with(DEtools); with(plots); > eq1 := diff(x(t), t) = y(t); eq2 := ...
0
votes
0answers
131 views

Apache ODE workflow example [closed]

Hi I need one workflow example with apache ode with correlation.
0
votes
1answer
153 views

Opengl Sphere with gravitational pull at the center

I'm wondering whats the easiest way to apply gravity at the center of a sphere (much like a planet) I'm thinking that ODE would be the best library to use? But not sure on how to implement it to apply ...
0
votes
1answer
53 views

how to solve odes

i have a matlab code that can solve dy/dt=t/y and y(0)=1, how can i generalize this to solve dy/dt=f(t,y), y(o)=y_0 for ANY given f(t,y)?
0
votes
0answers
26 views

ODE Joint Axis Problem

Can anyone explain me how to use ode joint axis? How to use dJointSet*Axis() function? Thanks for your answers!
0
votes
1answer
85 views

Compiling ODE code in Linux

I have downloaded ode-0.11.1 and I am able to compile source code by modifying the Makefile provided with the demos, but I can't figure out how to manually compile and link the code I need as a ...
0
votes
2answers
221 views

Simulating physics electro magnetism for a gaming application

I am interested to know the steps involved and any important references required to simulate the following model which I wanted to develop out of my own interest. I wanted to work with some physics ...
0
votes
1answer
437 views

Numerically Solving a Second Order Nonlinear ODE

Okay, I have this not so pretty 2nd order non-linear ODE I should be able to solve numerically. f''(R)+(2/R)f'(R)=(.7/R)((1/sqrt(f))-((0.3)/sqrt(1-f))), f'(0)=1, f(1)=1 I was thinking of breaking ...
0
votes
1answer
646 views

XCode 4 Error about missing documentation from doxygen.app / Core-Plot

I recently upgraded to XCode 4. I imported a project from 3.2 and started a build. I got two errors immediately, regarding missing documentation. The project built successfully regardless, but I'd ...
0
votes
1answer
110 views

Where is iPhone crash report UUID recorded?

Sometimes I am unable to symbolicate my application's stack frames in a crash report. This is because I do not have an older .app and .dSYM. I was trying to force XCode to use my newer .app and .dSYM ...
0
votes
3answers
273 views

Installing ode using Macports

I am trying to install ode via Macports, but get this error: On Mac OS X 10.5, ode 0.11.1 requires Xcode 3.1 or later but you have Xcode 3.0. Error: Target org.macports.extract returned: ...
-1
votes
2answers
1k views

Runge-Kutta (RK4) for system of differential equations in Java

This quation is mostly a result of this thread: Differential Equations in Java. Basically, I've tried to follow Jason S. advise and to implement numerical solutions to differential equations via ...