The command nodeset 1 add vertex with x_coord < -1.0151 doesnt seem to behave as I expect, indeed even using the icon in the command panel, results in a command that fails.
Results in, ERROR: add : is not a valid option for a nodeset command please check the command syntax
The command line help, helps here, help nodeset nodeset <ids> [ADD|remove] {node|vertex|curve|surface|volume|group} <ids> [name <name>]
Hi @makeclean it’s possible that, as @karl and I have discussed above, that you may need to add a space between the > operator and the - sign. I’m assuming that you “cleaned up” your syntax for clarity in your original post – as that’s something I often do!
We’re basing this off of the following finding:
Replicates your error message
Cubit>nodeset 1 add vertex with z_coord<-0.5
ERROR: add : is not a valid option for a nodeset command
please check the command syntax
Works correctly
Cubit>nodeset 1 add vertex with z_coord< -0.5
Added Vertex 2 to nodeset 1
Added Vertex 4 to nodeset 1
Added Vertex 6 to nodeset 1
Finished Command: nodeset 1 add vertex with z_coord < -0.5
It certainly is a bit annoying that the extra space is needed, especially when nodeset 1 add vertex with z_coord<0.5 works just fine. We’re looking into this to see what the reason for this requirement for the >- combination is (my guess is that this might be a bug from our implementations to support >= and similar operators).
Sorry, I meant node throughout whenever I meant vertex. But, yes indeed it was the tricky space that caused my issues. I’m surprised a space cant be parsed out, but for now it it what it is. Thanks guys!