Questions tagged [acceleration]

ambiguous tag: avoid using this tag (see the full tag wiki for alternatives)

This tag is currently ambiguous and unlikely to get your question extra attention. Consider using the following tags for better classification:

175 questions
0
votes
0 answers

How to minimize and synchronize travel time with velocity and acceleration constraints

I have the following simplyfied problem and have to develop an algorithm to optimize it. Let's imagine n number of trains with zero mass. Each train is placed on their own railway. Each train has it's owm maximum acceleration constraint. Each train…
MuFFiiN
  • 3
  • 2
0
votes
0 answers

Modeling a robotic arm in Python with acceleration/deceleration

I'm trying to model the motion of a robotic arm in Python. I want it to start from an initial position of 0 degrees and initial velocity of 0 deg/sec. It has a constant acceleration of 0.5 deg/sec**2 and a max velocity of 3 deg/sec. For now I am…
cat_herder
  • 51
  • 6
0
votes
0 answers

ffmpeg - Progressive audio speed / asetpts atempo

I'm trying to figure out with progressive audio speed/acceleration. In this case, atempo won't work due to speed factor as number instead of expression. While the asetpts doesn't work in combination with adelay. 1. audio1 - apply progressive PTS,…
0
votes
1 answer

What's the difference between H265, x265, x264, H264 and which of these uses GPU instead of CPU and how to use H265 GPU NVIDIA acceleration in ffmpeg?

I'm not sure if x264/5 use CPU and if h264/5 use GPU and also if h265 is basically HEVC_NVENC for NVIDIA GPU acceleration. So, if you could give me more info about these encoding types it would be great. I understood that, summing up a lot, x26* use…
Fab98
  • 1
  • 1
  • 3
0
votes
1 answer

How do I apply velocity and acceleration to match the result of math formulas

So I have an initial velocity iv a final velocity fv (that is always 0) a time t and an acceleration variable a I use these variables to calculate final distance fd Note: language used here is Kotlin Note: Formula used for calculating fd and a are…
Sys
  • 3
  • 2
0
votes
1 answer

Python - How to get integrated values from np.array?

I am trying to get integrated values from np.array, list of values. Not the surface under the function, but values. I have values of acceleration and want to get values of velocity. So let's say I have an arry like: a_x = np.array([111.2, 323.2,…
0
votes
1 answer

How to accelerate WPF fade in/out animation

I implemented lightbox effect with window's opacity change whilst fading in/out. When I have my window maximized this effect has big delay or when I use duration property then opacity change is not smooth. I manage this eg. with like here: …
galsan
  • 63
  • 10
0
votes
0 answers

Given heading, pitch, bank of point A on a plane and an offset to point B, how do I calculate the heading, pitch, bank of point B on the same plane?

I have the heading, pitch, and bank from a sensor in the center of an entity (point A), and I want to be able to calculate the heading, pitch, and bank of another point of the entity (point B). If I know the offset from point A to point B, how do I…
0
votes
0 answers

ThreeJS: How to move background only in one direction?

I have a fully working model of a car mesh moving right, left, up and down using Three.JS The input data are acceleration on the X and Z direction, we apply double integration on the acceleration to compute the displacement. So I have been able to…
Sami
  • 341
  • 7
  • 22
0
votes
0 answers

how to integrate acceleration and velocity in Three.JS

I have acceleration data which I used to retrieve the velocity and displacement as shown below: Assuming Vo = 10 m/s and Xo = 5m I am using three.JS to render a car mesh on the browser that simulates the movement of a vehicle in real-time.…
Sami
  • 341
  • 7
  • 22
0
votes
1 answer

How to properly add gradually increasing/decreasing space between objects?

I've trying to implement transition from an amount of space to another which is similar to acceleration and deceleration, except i failed and the only thing that i got from this was this infinite stack of mess, here is a screenshot showing this in…
Gess1t
  • 71
  • 1
  • 9
0
votes
1 answer

How to calculate acceleration of an object in 3D using Matlab spaps?

I have x,y,z data for birds flying. 5.41634053198718 -18.1810946096409 -0.780385429905346 5.35578033638605 -18.1270442655634 -0.776694225482939 5.28687303433952 -18.0715127366784 -0.771968693273565 5.22280640780212 …
hannah
  • 1
0
votes
1 answer

Calculating the speed a variable increases (python)

I have a small problem that I really cant figure out how to solve after some time googling. My project consists of a rasberry pi and a rotary encoder that I will use as a sensor to see how fast a shaft is spinning. This is then coded in Python. My…
0
votes
1 answer

Calculate acceleration from data points

I have a servo motor, and this servo motor I would like to make it follow a "motion pattern" as closely as possible, and use the same value for acceleration and deceleration. The attach picture illustrates the "motion pattern" (Y = velocity, X =…
Laurits S
  • 19
  • 5
0
votes
1 answer

Controlled Mouse acceleration for macro

I am currently making a macro that must be human-like. My basic req is that I give an array of x,y points into a for loop and it moves to each point. To make this movement smooth I am using a smoothing method that can be found in the forum/thread…
user12548552