Tomas Slancik

tamte

About Me

業界:
Advertising / Motion Graphics

Connect

LOCATION
New York, United States
ウェブサイト

Houdini Engine

Availability

I am currently employed at Method Studios

Recent Forum Posts

Assign iteration in a loop as attribute 2025年11月20日17:15

your path in
i@face = detail("../foreach_begin", "iteration", 0) + 1;
is invalid to begin with, since the node holding the iteration metadata is called foreach_begin1
but even if it was valid, detail() VEX function expects geometry, so either input number, file path or op: string pointing to sop node
since you want to directly point to sop node you need to specify it as
i@face = detail("op:../foreach_begin1", "iteration", 0) + 1;

but it may be just easier to connect foreach_begin1 to 2nd input of wrangle and do:
i@face = detail(1, "iteration", 0) + 1;

How to Optimize Simulation Performance Inside an HDA? 2025年11月19日15:42

use Performance Monitor to see where the potential slowdown comes from

since ideally there should be no inherent slowdown when simulation runs inside of HDA or not, and many SOP level solvers are HDAs to begin with

so any slowdown is likely coming from how the HDA is build and what more is being cooked during sim compared to the sim outside, etc..

Flip SOP add more particles without reseed 2025年11月18日12:43

mzigaib
Here is an example comparing DOP and SOP workflow.
you forgot to uncheck Reseeding

as mentioned above [www.sidefx.com] if you want to oversample just sources, you can modify oversampling parameters , but then turn off Reseeding again so that only sources are seeded and not the sim