How to find Jacobian of a vector field given as a dataset?
2 次查看(过去 30 天)
显示 更早的评论
I have a dataset given in 3x 1 x m x n x l. 3x1 vector at each point of m x n x l 3D tensor holds the velocity vector [u,v,w]. How do I estimate the Jacobian matrix at each point?
7 个评论
J. Alex Lee
2020-6-12
编辑:J. Alex Lee
2020-6-12
Great, glad that you have a working method!
Just to note that I don't think "velocity gradient" is confusing at all...I think "deformation gradient" could potentially be confusing.
Back to the actual question at hand:
I think your method is as good as can be unless you want to try to compute with higher accuracy finite differences (TMW's gradient() function uses central differences; docs also state that edge gradients are approximated by one-sided differences, which are only 1st order accurate). Added effort for higher "accuracy" would probably go to waste unless your velocities were computed using similarly accurate FDs (if you method is based on FD).
If you're extracting the nodal solutions from an FEM-based code (I've seen it before on Answers), you might be better off computing the gradients within the FEM framework and exporting it, if you have control over that.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!