你已经派生过 geomesh
镜像自地址
https://gitee.com/sduem/geomesh.git
已同步 2025-08-03 18:26:51 +08:00
17 行
511 B
Matlab
17 行
511 B
Matlab
%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'); |