I’m trying the use the command;
quality uspline all scaled jacobian 0.1
But I get the error;
ERROR: Syntax error.
No entities specified.
Type 'help quality' for correct syntax`
Now the help shows;
quality uspline {<uspline id>...|all} scaled jacobian
[threshold <bad element threshold>]
The online documentation also shows the same, what am I missing? My geometry indeed does have usplines generated.
Quick bump in case @gvernon knows off the top of his head…
I think you’re missing the threshold
keyword:
Works
Cubit>quality uspline 1 scaled jacobian
0 cells with scaled Jacobian below 0.100000.
Journaled Command: quality uspline 1 scaled jacobian
Cubit>quality uspline 1 scaled jacobian threshold 0.1
0 cells with scaled Jacobian below 0.100000.
Journaled Command: quality uspline 1 scaled jacobian threshold 0.1
Fails
Cubit>quality uspline 1 scaled jacobian 0.1
ERROR: Syntax error.
No entities specified.
Type 'help quality' for correct syntax.