Physics Formula

wraithseeker

Tired.
Reaction score
122
If I were to give time and displacement as user inputted variables, which formula should I use to get vi and vf?

I tried to derive formulas from here but to no avail :eek:
 
Last edited by a moderator:

kingkingyyk3

Visitor (Welcome to the Jungle, Baby!)
Reaction score
216
Velocity = Displacement/time

Vi = Initial velocity
Vf = Final velocity

Vi is counted at the starting and Vf is counted at the end.

This is what I had learn in my physic class.
 

uberfoop

~=Admiral Stukov=~
Reaction score
177
If you're using the variables of time, displacement, vi, and vf, you would use the formula relating those:

d = ((vi + vf)/2)*t

Solve for vi and vf and you get:

vi = 2d/t - vf
vf = 2d/t - vi

You cannot solve vf or vi from simply inputting time and displacement, because 2 leftover variables means not enough information has been plugged in to get a definite answer.

It of course gets much more messy if acceleration isn't constant though, since then vf is equal to vi plus the integral of a(t)dt evaluated from ti to tf.
 

wraithseeker

Tired.
Reaction score
122
accleration is constant and is the value of gravity.

So I need something like time, displacement and initial velocity?

EDIT: Wait no, final velocity is always 0 becaus I am making a jump.
 

uberfoop

~=Admiral Stukov=~
Reaction score
177
Or time, displacement, and final velocity, to get initial velocity, yeah.
 

wraithseeker

Tired.
Reaction score
122
But final velocity is always 0 for a jump or a knockback.

EDIT: How about taking only time? I will only move the unit by the Z axis and not touch x & y.

EDIT: I did some hand written stuffs shouldn't equation be

vi = ((2*d)-vf)/(t*t)
 

uberfoop

~=Admiral Stukov=~
Reaction score
177
Well, sort of. It's 0 after impact with the ground, but that means you just ditched constant acceleration. Assuming no air drag occurs and the total change in displacement is 0, final velocity should be equal to the velocity at the begining of the jump.

I'm not entirely sure what to get at though, what exactly do you need the numbers for?
 

wraithseeker

Tired.
Reaction score
122
JASS:
private function Periodic takes nothing returns nothing
    local integer i = 0
    local Jump d
    loop
        exitwhen i >= Count
        set d = FlyZ<i> // gravity = -981. TIMEOUT = 0.03
        set d.vz= d.vz+ 0.5 * d.gravity * TIMEOUT
        set d.vi= d.vi+ d.vz *TIMEOUT
        call SetUnitFlyHeight(d.target,d.vi,0.0)
        if d.vi &lt; 0. or GetWidgetLife(d.target) &lt;= 0.0451 then
            call d.destroy()
            call d.Code.execute(d.target)
            set Count = Count - 1
            if Count &gt; 0 then
                set FlyZ<i> = FlyZ[Count]
                set i = i - 1
            else
                call PauseTimer(Timer)
            endif
        endif
        set i = i + 1
    endloop
endfunction

function Heh takes unit u,real displacement, real time returns nothing
   local Jump d
   local real velocity = 0.
        if IsUnitInGroup(u,HitGroup) then
            set d = Jump<u>
            set velocity = 2.00*displacement/time - 0.00 // yr formula
            set d.vz = d.vz+velocity
        else
            if Count == 0 then
                call TimerStart(Timer,TIMEOUT,true,function Periodic)
            endif
            set velocity = ((2.00*displacement)- 0.00)/(time*time)  // err.. the formula im trying to test.
            call BJDebugMsg(R2S(velocity))
            set d = Jump.create(u,velocity)
            set Jump<u> = d
            set FlyZ[Count] = d
            set Count = Count + 1
            call GroupAddUnit(HitGroup,u)
        endif
    endfunction</u></u></i></i>


I took out parts of my jump library.

How did I ditched constant accleration? No air drag, a free fall and displacement is not 0 as the unit is moving to a direction and not coming back.
 

uberfoop

~=Admiral Stukov=~
Reaction score
177
I'm assuming you're talking about z velocity, and, in that case, assuming that a unit is stationary when it lands means you are ditching constant accelleration. When an object is at rest on the ground, it has no z accelleration. When it is propelled into the air, extreme nigh-instant accelleration gives it a high velocity in the positive z direction. In the air, the object suffers from a strong gravitational accelleration in the negative z direction. When it's about to hit the ground, its z velocity will be roughly equal to its initial z velocity but in the negative z direction. Upon striking the ground, it suffers VERY HIGH accelleration to stop its descent.
Thus, non-constant accelleration.
This is, of course, unless the jump ends at the maximum z height, at which point vf is indeed equal to 0.



Also, I don't need to see the code. Rather, what is the 'velocity' variable representing? Initial upward velocity? That's the question.
Also, usually in jumps, vi and vf aren't really used, rather it is simulated bit by bit with something derived from:
(delta)s = Vi*t + .5at^2
 

wraithseeker

Tired.
Reaction score
122
That velocity variable represents initial velocity so the unit will fly up and down automatically.

EDIT: Yes I am talking about the Z axis.
EDIT2: How would I do it if I have no constant acceleration? My knockback reduces speed by decrement every interval tick period of 0.03.
 

uberfoop

~=Admiral Stukov=~
Reaction score
177
Ok, in that case, if you're going to use that formula, use the formula assuming values at halfway through the jump (when the unit is at its highest)(this is so that (delta)d isn't 0, since all that does is create a condition where the only requirement is that Vi = -Vf and thus the equation is useless); d will be the max jump height, Vf will be 0 at that height, and t will be half of the total time for the entire jump:
Thus, considering the lack of Vf:

Vi = 2d/t
 

Rainther

I guess I should write something of value here...
Reaction score
61
I'm not quite sure how a jump would be simulated however, my method would be:

JASS:
function timer takes nothing returns nothing
//Get data
local MaxHeight = 150
set data.integer = data.integer + 1
call SetUnitFlyHeight(data.unit, ( MaxHeight * 4 * data.integer / TurnOff ) - ( MaxHeight * 4 data.integer * data.integer / TurnOff / TurnOff ), 0)

if data.integer &gt;= TurnOff then //Turn off can be Distance of the 2 points divided by the movement occured of the unit each intervall
//Destroy Timer
endif
endfunction

I know I've posted this before, but haven't received any responds.

This is a rather easy way to make a unit fly. It's possible to make the unit fly faster at start, or slower are start.
 

wraithseeker

Tired.
Reaction score
122
@Rainther I don't really understand what you are doing though.

Vi = 2d/t

Did not work too well, the unit flew too high and the knockback long ended
 

Rainther

I guess I should write something of value here...
Reaction score
61
Lemme try to explain. data.integer will eventually reach the same value as TurnOff.

Meaning that data.integer / TurnOff will eventually become the value 1.

So ( MaxHeight * data.integer / TurnOff ) will at the end become only MaxHeight. ( MaxHeight * (data.integer / TurnOff = 1) )

Same thing goes for ( MaxHeight * data.integer * data.integer / TurnOff / TurnOff ) which also will become only MaxHeight, however is does this at a slower speed since the values multiplied with themselves get's lower. x < 1 gives x * x < x

When we are half way through the flying it'll be (MaxHeight * 4 * (data.integer / TurnOff) = 0.5)) - (MaxHeight * 4 * (data.integer / TurnOff) = 0.5) * (data.integer / TurnOff) = 0.5)) which is the heighest we'll reach.

That's why I do MaxHeight times 4. Because MaxHeight * 0.5 - MaxHeight * 0.25 = MaxHeight / 4

And at the end they'll become (MaxHeight - MaxHeight = 0) The orginial height.

EDIT: Seperated it so it'd be easier for the eye :D
 

Strilanc

Veteran Scripter
Reaction score
42
If the jump starts and stops at the same height (ie. flat ground), then you also know that the initial z velocity is opposite the z final velocity:

Vz(final) = -Vz(initial)

So our total change in velocity is 2*Vz(initial), caused by acceleration from gravity over time:

g*t = 2*Vz(initial)
t = 2*Vz(initial)/g

Half way through the jump the unit will be at its highest point, which is:

dz = t/2*Vz(initial) - g*(t/2)^2/2
= 2*Vz(initial)/g/2*Vz(initial) - g*(2*Vz(initial)/g/2)^2/2
= Vz(initial)^2/g - Vz(initial)^2/g/2
= Vz(initial)^2/g/2

Put it all together:

Vz(initial) = sqrt(2*dz*g)
Vz(initial) = t*g/2

You can't specify both the time and the height; only one or the other. If you mean the actual distance d the unit will travel, then just set the unit's speed along the ground to be d/t.
 

Light Alkmst

New Member
Reaction score
20
If it's user inputted, then vi should be given. :D

Otherwise, you could essentially start with whatever vi you want... :D


EDIT:
If I were to give time and displacement as user inputted variables, which formula should I use to get vi and vf?

My bad.

vi * vi = vf * vf - 2 * a * d
Hmm...that's still 2 vars we don't have...
 

Strilanc

Veteran Scripter
Reaction score
42
What do you mean it displayed negative values? If you don't even understand the effects of changing the sign of gravity then I'm not sure I can help.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    Actually I was just playing with having some kind of mention of the food forum and recipes on the main page to test and see if it would engage some of those people to post something. It is just weird to get so much traffic and no engagement
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top