Jacobian check using macro
Hi all
I am very new to tcl and macro making and was trying to create a macro for checking the jacobian.
Using the help file from hypermesh desktop reference guide this is what i did:
(Documents) 72 % *createmark elems 1 'displayed'
(Documents) 72 % *createmark elems 2
(Documents) 74 % *elementtestjacobian (elements,1,0.7,2,2,0,'jacobain')
this gives an error of 'unknown entity type found'.
so i tried doing this:
(Documents) 72 % *createmark elems 1 'displayed'
(Documents) 72 % *createmark elems 2
(Documents) 73 % *elementtestjacobian (elements, $1 ,0.7, $2 ,2,0,'jacobain')
but this gave an error of 'can't read 2 no such variable found'.
I have done exactly what was mentioned in help file then why I am getting error?