Jump to content

particle birth rate with velocity


mugen

Recommended Posts

Hi

I have a popnet set to emit from points coming from the first input connection

I am trying to define my birth rate according to the input points velocity

the faster the more particles, the slower the less

but I can't find how to use length($VX, $VY, $VZ) in the birth rate

it tells me:

"Variable is not defined. Using '$VZ = 0'."

"Variable is not defined. Using '$VY = 0'."

"Variable is not defined. Using '$VX = 0'."

I checked the "attributes" tab of my source node and it inherits all attribute.

I even tried to "create local variables" but this does not help.

do you guys have any idea how to set this up?

many thanks!

M

Link to comment
Share on other sites

The source pop doesn't really accept local varaibles in that way.

One way of doing what you need is to color the source points based off the length of velocity (ie fill the red channel with the length). And then in the birth probability use $CR, $CR. That way you'll get more points where the red value is high and none where there is no red value.

There are other ways, but that's the easiest to explain :).

M

Link to comment
Share on other sites

Hi

thanks for your answers!

Macha, I should have mentioned I am using point emission so I can't use your trick.

Marc,

your solution works fine for a surface, but the result is visually not very obvious for a point

I can see it stops emitting when $CR==0 but I can't see the decrease in the rate

if you could have a look into my file and let me know where I am wrong, would be great!

thanks again for your help guys :)

birthrate_and_speed.hipnc

Link to comment
Share on other sites

My recommendation would be to create more points at the point you're emitting from...

If you have two points for example, one not moving, and the other with some velocity, you could do some sort of a copy stamping based on length($VX,$VY,$VZ) to create more points at the moving point. Then inside pops, you set it to emit npoints("path to source geometry here") on each substep.

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...