为了计算标量场的梯度,可以使用 Dimitri Mavriplis 的论文 Revisiting the Least-squares Procedure for Gradient Reconstruction on Unstructured Meshes(第 23 页)中描述的加权最小二乘法。
我的问题是:如何重建矢量场的梯度?
在 J. De Keyser 等人的论文Least-squares gradientcalculation from multi-point observers of scalar and vector fields: Methods and applications with Cluster in the plasmasphere 中,似乎可以将矢量场分量视为标量场并在某些假设下将其提供给梯度计算。
我目前正在编写一个应该计算这个的通用 C++ 方法,其中结果排名由为所有可用组合(标量向量、向量张量、张量向量、向量向量等)定义的外部产品特征类确定. 关于如何解决这个问题的任何想法?