Reading *.msh files (Higher-order curved triangles) in Matlab
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I need to get the number of nodes, node numbers of each element, boundary edges and nodes of the higher-order triangular elements from Gmsh in Matlab (using load_gmsh4 or by any other method). How can I do that?
Please help.
Thanks in advance.
Smitha
0 commentaires
Réponses (1)
Tanmay Das
le 28 Déc 2021
Modifié(e) : Tanmay Das
le 28 Déc 2021
Hi,
I found a similar question in the MATLAB Central which may solve your problem:
You may also refer to the following link for further clarification:
3 commentaires
Tanmay Das
le 30 Déc 2021
If you use quadratic or higher order meshes, the number of columns in msh.TETs will change, for a quadratic mesh:
elements = msh.TETS10; elements = elements(:,1:10); elements =elements';
This is discussed in comments section of the following question:
Voir également
Catégories
En savoir plus sur 3-D Scene Control dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!