Jump to content

How cant I increase fluid particles velocity, over time?


Masoud

Recommended Posts

7 hours ago, woodenduck said:

pop wrangle plugged in to "particle velocity" on the flip solver...

v@v *= fit(@Frame, 1, 24, 0, 1);

This will multiply your velocity on a ramp from 0-1 between frames 1 and 24. 

 

It doesn't work.

Link to comment
Share on other sites

instead of feeding initial velocity from SOPs, use POP Force DOP or other forces

force acts on velocity every timestep, therefore it will keep gradually increasing your particles velocity

you can also add some POP Drag or POP Wind to introduce some air resistance to not accelerate forever

Link to comment
Share on other sites

Hi "anim",

The problem is I want to assign a fix, velocity noise to points, and when I use noise in a Dop, "POP VOP" node, it changes noise over time. I just want to scale velocity over time.

Edited by Masoud
Link to comment
Share on other sites

then you can store your already computed v that you are happy with into some temporary attrib like v@tmpv using Attribute Swap SOP, method: Move

and in DOPs use POP Wrangle: v@force = v@tmpv * chf("weight");

it will use your v@tmpv vector (further scaled by weight parm) as a force

since force is added to velocity each timestep it will naturally accelerate, so just adjust weight to control the rate

Edited by anim
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...