How can I fix this error "Error using pde.PDEModel/geometryFromEdges (line 46) Assemblies of more than one geometric model are not currently supported. “ ?
3 次查看(过去 30 天)
显示 更早的评论
I use Matlab PDE toolbox and I get this error in my code. How can I fix this error?
"Error using pde.PDEModel/geometryFromEdges (line 46) Assemblies of more than one geometric model are not currently supported."
0 个评论
采纳的回答
Damian Sheehy
2016-7-26
If you wish to combine two sets of edges then do that before calling geometryFromEdges. If you want to replace an existing geometry with a new one then delete the existing geometry first and then call geometryFromEdges. You can delete the existing geometry as follows:
pdem = createpde
g = @squareg
geometryFromEdges(pdem,g)
delete(pdem.Geometry)
pdem.Geometry = []
% Now you can call geometryFromEdges again
geometryFromEdges(pdem,g)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Geometry and Mesh 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!