A karst cave model is constructed from the point cloud data

Signed-off-by: 刘明宏 <liuminghong@mail.sdu.edu.cn>
这个提交包含在:
刘明宏
2023-06-22 06:09:16 +00:00
提交者 Gitee
父节点 aae7591dd3
当前提交 0fae51ed92
共有 14 个文件被更改,包括 2117 次插入0 次删除

查看文件

@@ -0,0 +1,17 @@
%A karst cave model is constructed from the point cloud data
%Extract the contour of point cloud data
ptCloud2Curve;
%3D model initialization
Comsol_with_Matlab_Start;
import com.comsol.model.util.*
model = ModelUtil.create('Model1');% ModelUtil.remove('Model');
model.modelNode.create('mod1');
model.geom.create('geom1', 3);
model.mesh.create('mesh1', 'geom1');
data_dir = pwd ;
%Constructed Irregular 3D volumes from 2D contour curves
model = lofting(model,data_dir);
mphsave(model,'cave');