Computing Jacobian - Code Answer Flashcards
1
Q
What comes under ‘%Compute jacobian matrix’?
A
jac=deriv*elcod;
2
Q
What comes under ‘%Determinate of the jacobian’?
A
detJ=det(jac);
3
Q
What TWO LINES come under ‘%Check for negative jacobian’?
A
if detJ ); stop
end
4
Q
What comes under ‘%Compute inverse jacobian’?
A
jaci=inv(jac);
5
Q
What comes under ‘%Compute cartesian derivatives’?
A
cartd=jaci*deriv;