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 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kaveh Gharibi
el 26 de Jul. de 2016
Comentada: Kaveh Gharibi
el 1 de Ag. de 2016
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 comentarios
Respuesta aceptada
Damian Sheehy
el 26 de Jul. de 2016
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)
Más respuestas (0)
Ver también
Categorías
Más información sobre Geometry and Mesh en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!