Tagged Questions

Physics is a science that studies the interactions of energy and matter. Questions with this tag concern the simulation or implementation of physical concepts in programming.

learn more… | top users | synonyms

122
votes
10answers
3k views

Cosmic Rays: what is the probability they will affect a program?

Once again I was in a design review, and encountered the claim that the probability of a particular scenario was "less than the risk of cosmic rays" affecting the program, and it occurred to me that I ...
95
votes
10answers
26k views

Ball to Ball Collision - Detection and Handling

With the help of the Stack Overflow community I've written a pretty basic-but fun physics simulator. You click and drag the mouse to launch a ball. It will bounce around and eventually stop on the ...
71
votes
20answers
3k views

Practices for programming in a scientific environment?

Background Last year, I did an internship in a physics research group at a university. In this group, we mostly used LabVIEW to write programs for controlling our setups, doing data acquisition and ...
38
votes
7answers
2k views

Game network physics collision

How to simulating two client-controlled vehicles colliding (sensibly) in a typical client/server setup for a network game? I did read this eminent blog post on how to do distributed network physics in ...
32
votes
8answers
7k views

Resources for 2d game physics

I'm looking for some good references for learning how to model 2d physics in games. I am not looking for a library to do it for me - I want to think and learn, not blindly use someone else's work. ...
28
votes
13answers
1k views

How can I optimize my basic physics simulator?

I've written a simple physics modeler that allows me to bounce balls around the screen. You can click and drag to launch a ball, or you can generate balls hundreds at a time and watch them interact ...
25
votes
22answers
3k views

How much mathematics and physics should a programmer know? [closed]

I am currently learning mathematics and physics along with programming. Some of it is definitely useful for my programming related projects, especially the (hobby) games that I make, but not all. ...
20
votes
3answers
837 views

How to make a 2D Soft-body physics engine?

The definition of rigid body in Box2d is A chunk of matter that is so strong that the distance between any two bits of matter on the chunk is completely constant. And this is exactly what ...
20
votes
5answers
1k views

2D Spaceship movement math

I'm trying to make a top-down spaceship game and I want the movement to somewhat realistic. 360 degrees with inertia, gravity, etc. My problem is I can make the ship move 360° with inertia with no ...
19
votes
7answers
8k views

How to calculate bounce angle?

I played around with it for a while, but I simply can't figure it out. I made a tank that fires missiles, and when the missiles hit the walls, I want them to bounce off, but I want them to bounce off ...
18
votes
14answers
1k views

Can my loop be optimized any more?

Below is my innermost loop that's run several thousand times, with input sizes of 20 - 1000 or more. This piece of code takes up 99 - 99.5% of execution time. Is there anything I can do to help ...
17
votes
4answers
5k views

Runge-Kutta (RK4) integration for game physics

Gaffer on Games has a great article about using RK4 integration for better game physics. The implementation is straightforward, but the math behind it confuses me. I understand derivatives and ...
16
votes
2answers
911 views

Open source, pure Java physics / dynamics library

I'm looking for a lightweight, pure Java physics engine to do some simulations for robotic motion control. My requirements: Rigid body physics Joint constraints and forces Convex object collision ...
16
votes
9answers
7k views

2d Platformer physics

It was a long holiday weekend, so I got the coding bug again and started playing around: I wrote a basic tile engine, but having never attempted this before, I am really struggling with handling ...
14
votes
8answers
832 views

What are some algorithms that will allow me to simulate planetary physics?

I'm interested in doing a "Solar System" simulator that will allow me to simulate the rotational and gravitational forces of planets and stars. I'd like to be able to say, simulate our solar system, ...
14
votes
3answers
1k views

Need help with circle collision and rotation? - Game Physics

Ok so I have bunch of balls: What I'm trying to figure out is how to make these circles: Rotate based on the surfaces they are touching Fix collision penetration when dealing with multiple ...
14
votes
5answers
2k views

Continuous collision detection between two moving tetrahedra

My question is fairly simple. I have two tetrahedra, each with a current position, a linear speed in space, an angular velocity and a center of mass (center of rotation, actually). Having this data, ...
14
votes
5answers
13k views

Are there any decent physics engines for Android?

I've looked around for a physics engine that will play nicely with Android, but I've only been disappointed. In terms of performance, I had heard that jbox2d was the best bet, but (from my ...
14
votes
6answers
2k views

Simple physics-based movement

I'm working on a 2D game where I'm trying to accelerate an object to a top speed using some basic physics code. Here's the pseudocode for it: const float acceleration = 0.02f; const float friction ...
13
votes
29answers
2k views

Does a background in physics make you a better programmer?

I am wondering whether to do some extra studying around Physics as some people have advised me that having a background in Physics is good for programmers to have. I would be interested to here other ...
11
votes
5answers
579 views

Ballistic curve problem

Ok i know this is quite off-topic for programmers but still I need this for app, so here it is: Ballistic curve (without wind or any other conditions) is specified by these 2 lines: So, there is ...
11
votes
1answer
2k views

Bullet Physics - Apply Torque Impulse in Body's Local Space

I'm currently evaluating the Bullet Physics Library for a 3D space game I'm writing using C++ and Ogre3D. I've gotten Ogre3D and Bullet integrated nicely by deriving from btMotionState and plugging in ...
11
votes
5answers
1k views

How to create an “intercept missile” for a game?

I have a game I am working on that has homing missiles in it. At the moment they just turn towards their target, which produces a rather dumb looking result, with all the missiles following the target ...
11
votes
3answers
365 views

Is there a standard pythonic way to treat physical units / quantities in python?

Is there a standard pythonic way to treat physical units / quantities in python? I saw different module-specific solutions from different fields like physics or neuroscience. But I would rather like ...
10
votes
2answers
144 views

Is catastrophic cancellation an issue when calculating dot products of floating point vectors? And if so, how is it typically addressed?

I am writing a physics simulator in C++ and am concerned about robustness. I've read that catastrophic cancellation can occur in floating point arithmetic when the difference of two numbers of almost ...
10
votes
2answers
450 views

Damping Effect of Spring-Mass System (or is this ElasticEase?)

I'm trying to emulate an animation effect in code (almost any language would do as it appears to be math rather than language). Essentially, it is the emulation of a mass-spring system. I've been ...
10
votes
3answers
485 views

Finding a stable placement of an irregular (non-convex) shape

Given an image of a 2-dimensional irregular (non-convex) shape, how would I able to compute all the ways in which it could lie stable on a flat surface? For example, if the shape is a perfect square ...
10
votes
15answers
1k views

how to calculate a negative acceleration?

I'm implementing the scrolling behaviour of a touch screen UI but I'm too tired in the moment to wrap my mind around some supposedly trivial piece of math: y (distance/velocity) |******** | ...
10
votes
7answers
1k views

Good book for Monte Carlo methods in c++?

Can anybody recommend a good introduction book on Monte Carlo algorithms in c++? Preferably with applications to physics, and even more preferably, the kind of physics being quantum mechanics. ...
10
votes
11answers
7k views

2d game physics?

Can anyone point me to a library for 2D game physics, etc for programming gravity, jumping actions, etc for a 2d platform/sidescrolling game ? Or could you suggest some algorithms for side scroller ...
9
votes
3answers
376 views

Calcuate x/y point that 2 moving balls will collide

Im trying to make what is (essentially) a simple pool game, and would like to be able to predict where a shot will go once it hits another ball. The first part is, I believe, to calculate if the ...
9
votes
3answers
1k views

Chipmunk Physics or Box2D for C++ 2D GameEngine?

I'm developing what it's turning into a "cross-platform" 2D Game Engine, my initial platform target is iPhone OS, but could move on to Android or even some console like the PSP, or Nintendo DS, I want ...
9
votes
9answers
3k views

Broad-phase collision detection methods?

I'm building a 2D physics engine and I want to add broad-phase collision detection, though I only know of 2 or 3 types: Check everything against everything else (O(n^2) complexity) Sweep and Prune ...
9
votes
7answers
1k views

Open source physics engines

I have been using the Open Dynamics Engine (ODE) for the last few weeks with great success. It has a very simple API and its simulations at least look realistic. (I sometimes wonder about my collision ...
9
votes
5answers
3k views

Calculate the position of an accelerating body after a certain time

How do I calculate the position of an accelerating body (e.g. a car) after a certain time (e.g. 1 second)? For a moving body that it not accelerating, it is a linear relationship, so I presume for an ...
9
votes
10answers
503 views

Datatypes for physics

I'm currently designing a program that will involve some physics (nothing too fancy, a few balls crashing to each other) What's the most exact datatype I can use to represent position (without a ...
8
votes
3answers
143 views

Gravity with air-time, acceleration and speed gaining

I am trying to accomplish a gravity, where airtime is included, and also acceleration.I have tried using usual gravity, which looks something like this: velocity += gravity * dt; position += ...
8
votes
4answers
502 views

Pong physics problem

I have problem but I don't know how to describe it so I have drawn it. As you can see ball bounces when collision is detected. Nevermind the angle - I have just drawn it that way. But sometimes ...
8
votes
1answer
557 views

KDTree Splitting

I am currently writing a KDTree for a physics engine (Hobby project). The KDTree does not contain points. Instead it contains Axis Aligned bounding boxes which bound the different objects in the ...
8
votes
2answers
872 views

2D orbital physics

I'm working on a 2D physics engine for a game. I have gravity and masses working, using a simple iterative approach (that I know I'll have to upgrade eventually); I can push the masses around manually ...
8
votes
6answers
586 views

What mathematics is needed for a lunar lander game?

I'd like to build a game to learn cocos2d. Lunar lander is the first exercise coming in my mind. Any pointer/source code/tutorial of the physics calculations required will be appreciated. Thanks!
8
votes
2answers
448 views

The physics of turning in a boat

I am writing a small simulation of a boat (a sailboat under power rather than sail). It has a rudder and a keel and I have most of the physics working for the thrust and drag. I have modelled the ...
8
votes
5answers
1k views

Orbital Mechanics

Does anyone have an example of implementing Orbital Mechanics (preferably in XNA)? The code I am currently using is below, but it doesn't "feel right" when it executes. The object just bends ever so ...
8
votes
5answers
5k views

What XNA based 3D terrain and physics libraries exist?

I'm planning on creating a game that contains a landscape with objects on it. The landscape will be defined using a heightfield, and the objects will move about on top of, and fly over the terrain. If ...
7
votes
3answers
191 views

Friendship not inherited - what are the alternatives?

This may be a futile question. I have written/am writing a piece of physics analysis code, initially for myself, that will now hopefully be used and extended by a small group of physicists. None of ...
7
votes
1answer
606 views

Cocos2D Bezier curve around object as if by gravity

I'm trying to manipulate an object. When it gets near another object, let's say a globe, I want the globe to have a gravitational pull on the original object. I know I'm supposed to use CCBezierTo, so ...
7
votes
2answers
571 views

Find phase difference between two (inharmonic) waves

I have two datasets listing the average voltage outputs of two assemblies of neural networks at times t, that look something like this: A = [-80.0, -80.0, -80.0, -80.0, -80.0, -80.0, -79.58, -79.55, ...
7
votes
4answers
1k views

Non-Rigid Body 2D Physics Engines in C++

I'm trying to experiment with 2D physics engines in C++. So far, it seems the most popular is Box2D. Unfortunately, Box2D is a rigid body physics engine and that's not really going to help me with ...
7
votes
3answers
1k views

Why is Verlet integration better than Euler integration?

Can someone explain me why Verlet integration is better than Euler integration? And why RK4 better than Verlet? I don't understand why it is a better method :/
7
votes
2answers
536 views

Rewriting a for loop in pure NumPy to decrease execution time

I recently asked about trying to optimise a Python loop for a scientific application, and received an excellent, smart way of recoding it within NumPy which reduced execution time by a factor of ...

1 2 3 4 5 12