Different mass to each RBD fractured pieces, How?

   Views 952   Replies 10   Subscribers 0
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
Hello everyone,

I have some floating RBD pieces on FLIP fluid particles, and I would like to manually define the mass (density) attribute for each piece.

Is this possible?






Thanks for helping.
Edited by Masoud - Feb. 8, 2025 10:41:49

Attachments:
RBD fractured objects mass attribute.jpg (639.7 KB)

Masoud Saadatmand (MSDVFX)
User Avatar
Member
9088 posts
Joined: July 2007
Offline
you can use $OBJ local variable for example
so something like:
fit01( rand( $OBJ ), 500, 1000 )
you can of course use it to pick $OBJ-th value from some SOP geo storing the piece density values on points using
point("../../OUT_piece_densities", $OBJ, "density", 0)
or even from a space separated string using arg() whether its typed in manually or even stored as a detail attrib
atof( arg("100 50 1000 75 1500 645.5 711 537.4", $OBJ) )
etc...
Tomas Slancik
CG Supervisor
Framestore, NY
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
Hello Tamte

Thank you for replying.
Please take a look at my file. I tried this codes in the density field:

point("/obj/box1/SRC", $OBJ, "density", 0)

The spreadsheet indicates the density of each piece, which is useful, but the lower-density pieces always sink in the fluid!




Edited by Masoud - Feb. 9, 2025 03:29:25

Attachments:
untitled-ezgif.com-video-to-gif-converter.gif (2.4 MB)
Floating Geo Density_01.hip (2.0 MB)
RBD fractured objects mass attribute.jpg (369.8 KB)

Masoud Saadatmand (MSDVFX)
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
Hi cncverkstad

I tried using your solution, but I don't know why it doesn’t work.
I don't want to use a random value for density or mass. I need to specify them using my custom attribute.
Masoud Saadatmand (MSDVFX)
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
The spreadsheet shows that, even though I changed the density to 100, the Position field still displays density=1000, which is strange.
Edited by Masoud - Feb. 9, 2025 04:49:06

Attachments:
Spreadsheet.jpg (261.1 KB)

Masoud Saadatmand (MSDVFX)
User Avatar
Member
163 posts
Joined: Aug. 2017
Offline
can you use in your Project PackedRBD.

Attachments:
packed.gif (710.9 KB)

Conservation of Momentum
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
cncverkstad
can you use in your Project PackedRBD.

Is this image a Packed-RBD?

I tried to use Fractured-RBDs because I need to have direct control over each fractured piece, like applying different forces or tweaking specific interactions, fractured RBDs allow me to manipulate each piece independently.

In the image you uploaded, both of boxes are sinking, why?
Edited by Masoud - Feb. 9, 2025 05:49:20
Masoud Saadatmand (MSDVFX)
User Avatar
Member
163 posts
Joined: Aug. 2017
Offline
But I think its Not working correctly , this movement its just without center of pivot.

Attachments:
Floating Geo Density_01(1).hipnc (2.0 MB)

Conservation of Momentum
User Avatar
Member
423 posts
Joined: Aug. 2015
Offline
Hi cncverkstad

In your HIP file, you used RBD with whole objects as a single piece. To separate them, I switched it to Bullet, but the simulation is very unstable now and always sink..!
And I don't know what are they white collision proxies in the middle of each geometry!



According to my researches:

- Packed RBDs are more efficient and are the go-to solution when you're dealing with large numbers of objects or large-scale destruction and want to optimize performance.

- Fractured RBDs are more suitable when you need individual control over each fractured piece or if the number of fractured objects is relatively small and you need to manage them individually for specific behaviors.
Edited by Masoud - Feb. 9, 2025 06:17:58

Attachments:
untitled-ezgif.com-video-to-gif-converter.gif (1.4 MB)
Floating Geo Density_03.hip (2.0 MB)

Masoud Saadatmand (MSDVFX)
User Avatar
Member
9088 posts
Joined: July 2007
Offline
Masoud
- Fractured RBDs are more suitable when you need individual control over each fractured piece or if the number of fractured objects is relatively small and you need to manage them individually for specific behaviors.
This is not correct
packed RBD is much easier to manage since you have control over every RBD's properties as points of packed prims

However the main reason people use Old RBD solver for mutual interaction with FLIP is that it correctly uses feedback data and its stable, for some reason the Bullet implementation hasn't been working with feedback from other solvers like FLIP so that would be the only reason to not use it in your case
Edited by tamte - Feb. 9, 2025 11:14:38
Tomas Slancik
CG Supervisor
Framestore, NY
User Avatar
Member
9088 posts
Joined: July 2007
Offline
Masoud
Hello Tamte

Thank you for replying.
Please take a look at my file. I tried this codes in the density field:

point("/obj/box1/SRC", $OBJ, "density", 0)

The spreadsheet indicates the density of each piece, which is useful, but the lower-density pieces always sink in the fluid!


Image Not Found


Image Not Found
you are not sampling density from the correct points
the geometry you are pointing to has 16 points so both of your objects will sample density of 1000 which you can see in the Geometry Spreadsheet

so you either create geo with just 2 points and set density accordingly or just check Create Packed Primitives on your assemble
which will pack your objects but still promote our density attribute, that way
Fractured RBD will still be able to use correct geo based on name and the point() expression will correctly sample point based on $OBJ variable as there are exactly the same amount of points

EDIT: just to explain further as it may seem confusing
feeding Packed geometry to RBD Fractured Object DOP doesn't mean you get Packed RBD, just that the geo fed thee was packed, and RBD Fractured Object will still use it to create individual DOP objects for old RBD solver, packing in SOPs just helps representing each object as a single point and therefore allows having attributes that can be then sampled using point() expression based on $OBJ variable
Edited by tamte - Feb. 9, 2025 11:30:54
Tomas Slancik
CG Supervisor
Framestore, NY
  • Quick Links