Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在每个 E 和 N 中都有一个表面的三个属性(东向、北向和深度)。
我想将表面拟合到这些点,然后计算每个dx、dy和dz中这个拟合表面的体积,然后将其与其他一些数据进行比较。
你能帮我做吗?
要计算与深度 0 处的平面相比的表面体积,只需执行
volume_ref = sum(sum(data)) * dx * dy * dz;
要获得与另一个表面(例如背斜)相比的体积,请计算背斜相对于相同参考(深度 0)的体积,然后减去。