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

1
vote
1answer
27 views

Inertia/Air pressure to swing/rotate a div when it's moved/dragged

I've spent the last 6 hours trying to find an answer to my question but without any luck. I have some div's that are draggable on my website. While I'm dragging them, I want a realistic effect, like ...
0
votes
1answer
19 views

Box2D Body is not removed immediately (LibGDX Android)

I am learning libGDX on android. I am trying to remove body from world after collision. But, some times, bodies are not removed immediately, it takes 2-3 seconds to remove properly. private void ...
0
votes
0answers
49 views

calculate the distance between two point from iPhone Camera [closed]

i want to calculate the distance between two point from iPhone camera. i am explain you that what i want. Suppose i am standing with my iPhone (with camera on) 10 feet far from the object. So my two ...
1
vote
0answers
39 views

A ball inside a sphere using Bullet

I'm new at Bullet and all 3D and phisycs stuffs, so don't be angry :) I neen to create a big static rigid sphere and a little dynamic one inside. I want to use the big one like a bottle, so little ...
2
votes
1answer
50 views

Hit incoming missile (simple projectile missile) in Unity3D

I want to make Surface to Air Missile System in unity3D that could predict the incoming missile position after time 't' and set its interceptor missile angle and position in 3D coordinates so that it ...
1
vote
1answer
48 views

Simulating cloud chamber tracks

I'm trying to recreate cloud chamber tracks on python, but am really struggling with the coding as it is much more complicated than any previous python work I have done. The set up is as follows: I ...
1
vote
0answers
54 views

Corona SDK physics with line, why does the line turn into rectangle in the physics engine?

The issue I am having is simple. I have an object in the center of the screen, and then a circle orbiting that object. what i want to do is have the object orbit around the object, when the use ...
0
votes
1answer
37 views

Vector Equation Implementation

after some time searching, I have revised my question. I have found numerous examples of ball to ball collisions, but the only ones that seem to work use Vector2d or Vector2D. This is a problem, ...
1
vote
0answers
48 views

Exponential rate of change [closed]

First of all, i have made a drawing to illustrate what i need, please view the attached image. Now my question is. How do i calculate the exponential rate, so that my rate has the value of zero (0) ...
1
vote
1answer
40 views

Farseer physics mass/weight issue

I have created a platformer game using farseer physics with a player and some objects etc but are having some problem with mass on objects. The player is composed by a wheel and a torso connected ...
-2
votes
0answers
21 views

Calculating how a polygon bounces off a plane [closed]

I'd like to calculate how polygons bounce off a plane. In this picture, the square doesn't bounce straight up, but instead it bounces somewhat to the right and starts spinning. But I have no idea ...
0
votes
1answer
44 views

[Physics][2D][Collision] What to do after dettecting collision

In the last project (2D top-down game) I had quite simple collision detections and how to deal with it after detection. Everything could move only in 4 directions - up/down/left/right. C.D. worked ...
0
votes
1answer
100 views

Ball movement path in canvas, and other ideas you may have?

I've created this animation for my project that had to use any form of physics. I am a total beginner, too :) Anyway, this is my project now : Bouncing Balls You can setup gravity and force, then ...
0
votes
1answer
18 views

ActionScript platformer hitTest

I am making a 2D side scroller in actionscript and this is my first ever project using actionscript so I need a little help. I need to be able to test if there is a collision and where it is. For ...
4
votes
3answers
68 views

How to handle multiple simultaneous elastic collisions?

I'm computing the result by colliding pairs of 2D convex objects (without rotation), using the basic equations on wikipedia. However, when there are dependencies, like two objects hitting another ...
0
votes
1answer
21 views

Coding rebounds off of angled surfaces

I'm programming a pinball game to brush up on my physics a bit... my problem is coming from collision between the pinball itself, and various polygons on the board. Currently I'm using the distance ...
0
votes
1answer
24 views

Parametric trajectory equation?

I'm creating a very very simple game for fun. Realizing I needed the trajectory of an object given an angle and a velocity, it seemed logical to use this parametric equation: x = (v*cos(ΓΈ))t and y = ...
0
votes
1answer
55 views

Corona SDK Physics goes on and off while object is in motion

Below is my main file. essentially what is happening is that the collision is working when the "rect" object is not moving but as soon as i move the rect object, the collision stops taking affect. I ...
0
votes
0answers
47 views

Predicting Trajectory in a zero gravity environment

Corona has a great article showcasing how to predict a trajectory of a physics object: http://www.coronalabs.com/blog/2013/04/09/physics-radial-gravity-and-predicting-trajectory/ I need to expand on ...
0
votes
2answers
48 views

Corona SDK Orbiting object change direction

I have the following code: deg = 0.0; local function onTouch(event) if(event.yStart >= event.y) then deg = deg + 10; elseif(event.yStart <= event.y) then deg = deg -10; end ...
-4
votes
0answers
27 views

How is Schrödinger's cat related to quantum physics? [closed]

How is Schrodinger's cat related to quantum physics when compare to the real world scenario?
0
votes
1answer
38 views

memory consumed by array feed function

I'm beginner in C++, I have written this code for some physical problem, but this code when run it consume the memory very fast. The basic idea is that I want the function CCJJ to take the array x and ...
0
votes
0answers
29 views

How to add basic physics to UIViewController and Gestures

What's the best way to add physics to UIViewControllers in a UIPanGesture driven interface. Imagine a board (UIViewController) containing multiple cards (UIViewController). And those cards should ...
0
votes
1answer
49 views

AndEngine Update

I'm trying to learn AndEngine and have been messing around with the examples. The one I am modifying is PhysicsJumpExample What I would like to do is run something every X seconds. I have done some ...
1
vote
1answer
47 views

What does having an inertia tensor of zero do in Bullet?

In the Bullet Physics library, when constructing a rigid body the default argument for the inertia tensor is the zero vector. My understanding of inertia is fairly elementary but from the equation ...
0
votes
0answers
18 views

timer with System.nanotime()

I'm just trying to make a rectangle move over the horizontal direction. Below you can find the code I have written, but it doesn't work when I click drop-button. I don't understand why it doesn't ...
0
votes
1answer
36 views

computing fft of damped waves

I have a time series which is a linear combination of damped waves. The data is real. Y(t) =SUM_w exp(- gamma t) sin(omega t) There is no analytic form but this is a closest guess. I want to fourier ...
0
votes
0answers
20 views

prolate cycloid body movement

How can I make a box2d body move along a prolate cycloid curve? I've searched extensively and haven't found anything leads. Below is an example of how the movement should look like. I would appreciate ...
-2
votes
0answers
64 views

Numerical Solution(Electric Field Profile) of Electromagnetic wave in a Rectangular Waveguide in Matlab [closed]

I have two second order differential equations which need to be solved using Runga-kutta method. Not able to get the Final Solution. I am attaching a link to the post in which the equations are given ...
-2
votes
0answers
28 views

support needed regarding numerical solution for rectangular waveguide in matlab [closed]

Equations are provided at http://jap.aip.org/resource/1/japiau/v108/i1/p013109_s1 The code I have written earlier is lost! Someone please help me.
2
votes
1answer
93 views

Velocity based on time rather than FPS

I'm making a simple application with an object that I apply gravity on.. I don't want the object to go too fast / too slow when the fps rate changes, so I looked around for a way to do this and what ...
0
votes
2answers
47 views

For ray tracing refractions/reflections, shouldn't Transmittance+Reflectance = 1?

In this code mind article, http://www.codermind.com/articles/Raytracer-in-C++-Depth-of-field-Fresnel-blobs.html, the part about reflection/refraction has a few cases it checks for whether to transmit ...
0
votes
0answers
47 views

Joukowsky airfoil MATLAB

I'm trying to create a function that plots the airflow around an airfoil using the Joukowsky transformation. It's my first time with MATLAB and I have been trying to write the code but it must have a ...
0
votes
1answer
33 views

adjusting the speed of movement

My task is to convert a movement from a straight path to a curved path. the starting and ending points are given as well as the starting time and speed. $ns_ at 2.000000000000 "$node_(0) setdest ...
0
votes
1answer
57 views

Cocos2D: How to Setup a No-frills Physics Engine for an Endless Runner

Note: I am rather new to programming, even more-so game programming, so I apologize if my question is rather broad but it's hard to find a tutorial for this topic. Description of Project A simple ...
0
votes
0answers
24 views

box2d body spiral movement

I found a post on the forum box2d Spiral Movement with some code for making a body move in a spiral motion. The body is moving strangely and suddenly goes off screen but not in a spiral motion. I ...
1
vote
0answers
19 views

Pymunk Segment trouble?

I'm using Pymunk 3.0.0 on a Raspberry Pi running Debian Wheezy 7.0. When I try making a shape using the 'pymunk.Segment' function I end up with only the first line of the polygon. The same happens in ...
0
votes
1answer
40 views

When to start braking when heading for a position?

With only 1 dimension, you want to get to position X and stop there. you have a maximum acceleration A you can apply yourself; each frame you choose what direction to accelerate. So if you have a ...
1
vote
1answer
83 views

Control Algorithms or Functions for Steering a Sailing Boat

Does anybody know of any algorithms etc regarding controlling the rudder of a sailing boat. Input would be current heading and desired heading. There a whole bunch of things to take into ...
0
votes
0answers
50 views

Implemeting SPH (Smoothed particle hydrodynamics) with physics engine in 2D

Im quite newbie in this topic. Even after reading many docs, wiki pages and atricles, I still don't understand some things. I get the general idea, but not the implementation details. What forces ...
0
votes
0answers
50 views

Box2D ball won't bounce

I'm trying to create a Pong clone, but when i create the paddles and the ball, and i give the ball an initial force to a side, it won't bounce when hitting the paddle Code: void ...
1
vote
1answer
35 views

What repulsion direction do we use for Smoothed Particle Hydrodynamics when radius is 0?

When doing SPH, the paper by Kelagar recommends using a particular kernel for pressure induced forces between particles. The kernel it recommends is the following when the radius is within the kernel ...
0
votes
2answers
77 views

The momentum is not conserved after collision resolution between balls

I have a problem in collision resolution between balls. Actually collision responses are very realistic but the momentum is not conserved, why? I use an algorithm based on this document: ...
0
votes
1answer
66 views

Falling object, stuck on using Timer

I'm trying to simulate a falling object with an initial horizontal speed. I understand how to make it move horizontally (no acceleration) but I have some trouble making it move vertically because of ...
0
votes
2answers
62 views

Corona: How to detect the direction of an object with physics

I would like to know how to detect the direction of an object with physics, I mean when is falling down. can it be by a eventListener? any idea how to do it? I need it for know can I change the ...
1
vote
3answers
61 views

Collision detection using the Pythagorean theorem is being unreliable?

Objects can often times pass through each other? Additionally when calculating momentum, occasionally the sprites will form blobs upon collision, moving together instead of bouncing off. The code ...
0
votes
1answer
41 views

Java Physic Engine Clarification [closed]

im new to using physics engines in Java, so i wanted a little boost in knowledge so it becomes easier, ive searched in this forum for the best engine and it appears the most used one might be JBox2D ...
1
vote
2answers
51 views

Solve intersection between ball and rectangle[SOLVED]

I have a ball and a rectangle. The ball can move, the rectangle is fixed(mass = infinite). The ball has a position, a velocity, a radius, a mass. The rectangle has a position, a width and a height. ...
1
vote
2answers
116 views

making a box2d body move in a sine wave type motion

How can I make a box2d body move in a sine wave type motion? I believe it will require applying some forces to move it along the sine curve path but I am not sure how. I would really appreciate any ...
0
votes
1answer
27 views

Make rectangle fall when being hit by ball (different outcomes depending on properties)

I've just got started with physics. I'm using Java, though language does not matter obviously. Now I though I'd do something like this: A ball with a certain speed, radius and mass hits a rectangle ...

1 2 3 4 5 20