Hi Eyeracker
Turbine7.hip
Also one of the things I found is that the scene is taking too long to sim everything.
Hi Atom
Thanks for your quick reply on this and all your great suggestions,
I have a couple of volume wranglers but just for cropping out the volume in some places and split it in 2 so I can have a Temperature value using a name SOP after the VolumeWrangler
#Currently what I have:
float u = fit(@P.x, chf("min_x"), chf("max_x"), 0, 1);
@density *= chramp("ramp_density", u);
#This is what you mean ?
float u = fit(@P.x, chf("min_x"), chf("max_x"), 0, 1);
@density *= (chramp("ramp_density", u))/2;
Or are you suggesting adding a new volume wrangler before all of this?
I'm also adding more dissipation too.
Hi ryew
Thanks for this, I have changed it now.