Water Flow cannot switch to cc_label plot #20048
-
Hello! I have recently started using VisIt and tried to do the tutorials, but I have encountered an issue with the Water Flow tutorial. In the "Number of Water Droplets Over Time" section, I cannot seem to switch my active plot variable to cc_label to do the query and the "Treshold operator." Is there a way to change the active plot variable from y_coord to cc_label? Every time I try, an error message pops up saying "VisIt was unable to change the active variable because: The expression was invalid: The expression parser encountered an unexpected token: connected_components(alpha1 > 0.5)." That last part was me trying to define cc_label, and maybe I did it wrong. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I think the connected components function is named |
Beta Was this translation helpful? Give feedback.
So
cc_label
should beconn_components(mesh)
. Then you'll add the DeferExpression Operator and have it usecc_label
. Make sure this is the order of operators:Then change the active variable of the plot to
cc_label
.Let me know if you need anything else!