I’ve been struggling to eliminate some stuttering issues in my volume.
Currently, I’m using the retime node and have tried different volume blending Modes, but the problem persists.
Does anyone have any ideas or suggestions on how to fix this?
Tanto
One tip is to never have a mix of blended and unblended frames, so make sure your retime coefficient never results in integer frames from the original sequence.
tamte
Your best bet would be to use Advected mode and making sure you have correct vel volume present in your cache
By correct I mean that it represents velocity per second at the current FPS
For example things like simming with timescale other than 1 would produce incompatible vel for retiming ao that would need to be reflected in the settings by scaling it accordingly for advection purposes
v@vel *= chf('timescale');
ch("timescale") / $FPS
Wouter LichtenbeltBecause vel is in seconds, timescale affects just advection speed
That seems to have done the trick. Thanks!
Is there a reason why the velocity field is not affected by the timescale in the solver? I was expecting it to be?