Skip to content
Snippets Groups Projects
  1. Sep 07, 2005
  2. Jun 10, 2005
    • Christophe Geuzaine's avatar
      · 10f659ca
      Christophe Geuzaine authored
      Removed the last bits of the "Discrete Surface/Line" stuff.
      
      Gmsh can now simply read a .msh file, and use it as the boundary mesh
      of a 3D mesh. For an example on how to do this, cf.
      demos/sphere-discrete.geo.
      
      This complements nicely the STL remeshing stuff: Gmsh can now
      for example very easily be used to extrude surface meshes that
      come from other tools.
      10f659ca
    • Christophe Geuzaine's avatar
      · 2dd06581
      Christophe Geuzaine authored
      make full-quad algo work for non-plane surfaces
      2dd06581
  3. Jun 09, 2005
    • Christophe Geuzaine's avatar
      *** empty log message *** · 98638684
      Christophe Geuzaine authored
      98638684
    • Christophe Geuzaine's avatar
      · e89399f7
      Christophe Geuzaine authored
      fixed full-quadrangle recombine algo:
      
      - run globally, not for each surface
      - assign entities to elements
      - split line meshes
      - correctly re-tag vertices as 1st order
      - plug memory leaks
      e89399f7
  4. May 27, 2005
    • Christophe Geuzaine's avatar
      · b30c4e86
      Christophe Geuzaine authored
      add num of physical groups in stat window
      b30c4e86
  5. May 21, 2005
  6. Apr 19, 2005
  7. Jan 01, 2005
  8. Nov 25, 2004
    • Christophe Geuzaine's avatar
      · 09149e34
      Christophe Geuzaine authored
      This patch fixes an old design flaw in the post-processing module,
      namely that we used a list of Post_View objects instead of a list of
      pointers to Post_View objects in CTX.post.list.
      
      This had many annoying consequences, in particular the fact that we
      needed to be extra careful every time the list was reallocated (as
      pointers to the list elements would become invalid).
      
      I tried very hard to change the code everywhere it should be changed,
      but I might have missed something. Please let me know if you see
      anything suspicious (like a crash when you duplicate/remove/combine/...
      post-processing views).
      09149e34
  9. Nov 19, 2004
    • Christophe Geuzaine's avatar
      · 950e8323
      Christophe Geuzaine authored
      The "Simplex" class is now derived from a new class "SimplexBase",
      which contains only pointers to the nodes, and none of the other stuff
      necessary for the actual mesh generation.
      
      All the input/output/display routines have been rewritten in terms of
      SimplexBase: this provides a gain of almost 50% in memory when you
      just load meshes from .msh files to do visualization stuff, instead of
      actually generating the mesh.
      950e8323
  10. Aug 13, 2004
    • Christophe Geuzaine's avatar
      · 6f7fc45a
      Christophe Geuzaine authored
      Don't call Mesh_Quality() in GetStatistics()
      6f7fc45a
  11. Jun 30, 2004
    • Christophe Geuzaine's avatar
      · c7b67927
      Christophe Geuzaine authored
      added optimization hooks in the interface (GUI + comamnd line)
      c7b67927
    • Christophe Geuzaine's avatar
      · f8ec37c3
      Christophe Geuzaine authored
      We can now use Netgen's optimization pass on our own Delaunay meshes. It seems
      to work pretty well on small examples, but it definitely requires more
      testing :-)
      f8ec37c3
  12. Jun 29, 2004
  13. Jun 28, 2004
    • Christophe Geuzaine's avatar
      · 280918d7
      Christophe Geuzaine authored
      more fixes for netgen
      280918d7
    • Christophe Geuzaine's avatar
      · e60bf197
      Christophe Geuzaine authored
      Added hooks to optimize our meshes using netgen (in particular: the "special"
      volume 99999 is now cleaned up after use and all the elements/vertices are
      transfered back into the original volumes)
      
      As a bonus, this finally allowed me to remove the ugly hacks in the volume
      mesh drawing routines...
      e60bf197
  14. Jun 20, 2004
    • Christophe Geuzaine's avatar
      · 68b21769
      Christophe Geuzaine authored
      - mesh.algo -> algo2d and algo3d
      - replaced most of the remaining radio buttons with Fl_Choices (requires
        less screen real estate)
      68b21769
  15. May 25, 2004
    • Christophe Geuzaine's avatar
      · 2e1dc14b
      Christophe Geuzaine authored
      - removed the quads from the simplex trees (finally...)
      
        **warning**
      
        this is a pretty big patch that touches a lot of different files. I
        tried my best to update all the things that needed to be updated,
        but I probably forgot some things... Please test! (especially the
        export routines in obscure formats like SMS, Gref, etc., as well as
        the extrusion code)
      
      - added second order edge vertices for hexas, prisms and pyramids
        (drawing not done yet)
      
      - added sanity check for number of values in post-pro parsed file
        format
      
      - merged all mesh printing/reading routines in Print_Mesh.cpp and
        Read_Mesh.cpp
      
      - cleaned up the statistics code
      2e1dc14b
  16. May 07, 2004
    • Christophe Geuzaine's avatar
      · 44bfa8f6
      Christophe Geuzaine authored
      Small corrections for ONFILE background meshes:
      
      - should now work reliably interactively (and not only the first time
        the view is applied as a background mesh)
      
      - fixed some memory leaks
      44bfa8f6
  17. Apr 18, 2004
    • Christophe Geuzaine's avatar
      · bca74bc5
      Christophe Geuzaine authored
      - Added nice little buttons in the mesh menu to choose between 1st and
      2nd order interactively
      
      - Added 2nd order mesh stats in the GUI
      bca74bc5
    • Christophe Geuzaine's avatar
      · 2840a9d9
      Christophe Geuzaine authored
      - Fixed second order mesh generation in 3D (on simplices only at the moment).
      
      - In prevision of the extension to hexas, prisms and pyramids, all elements
      are now derived from a new Element base class, which will be used in the
      generalization of Edge/EdgesContainer in the future.
      2840a9d9
  18. Feb 28, 2004
    • Christophe Geuzaine's avatar
      · 1bea03df
      Christophe Geuzaine authored
      And more airplane work!
      
      - merged STL patch from Nicolas Tardieu. This patch permits to
        create an real elementary surface for each STL face. Until
        we have some code to directly remesh the STL data (which would
        be much nicer and cheaper), this is very useful. We can finally
        use STL representations to create meshable volume models.
        Thanks Nicolas !
      
      - new option to color the mesh by physical entities (if an element
        belongs to multiple physicals, we use the first one)
      
      - additional cleanup of the mesh drawing code
      
      - big cleanup of the geometry creation section in the parser:
      
        * removed horrible Geo/DataBase.cpp
        * fixed all List-related memory leaks (a lot!)
        * added tests to check if we don't try to recreate existing
          entities (this should prevent many weird bugs due to incorrect
          input files)
      
      - fixed LineLoop/EdgeLoop memory leaks
      
      - many small fixes all over the place
      1bea03df
  19. Feb 07, 2004
  20. Dec 12, 2003
  21. Dec 07, 2003
    • Christophe Geuzaine's avatar
      · 59cfe84d
      Christophe Geuzaine authored
      Added support to visualize mesh partitions. The partition info is currently
      set as the physical entity number in the MSH file, but it would be trivial
      to change it to something else (e.g., as soon as we generalize the MSH
      format to take arbitrary number of tags per element).
      59cfe84d
  22. Jun 14, 2003
    • Christophe Geuzaine's avatar
      · b02988d9
      Christophe Geuzaine authored
      Some morer work on second order elements
      b02988d9
  23. Jun 13, 2003
  24. Mar 21, 2003
    • Christophe Geuzaine's avatar
      · fb423350
      Christophe Geuzaine authored
      Fix whitespace in copyright headers
      fb423350
  25. Mar 11, 2003
    • Christophe Geuzaine's avatar
      · c668677a
      Christophe Geuzaine authored
      Remove garbage
      c668677a
    • Christophe Geuzaine's avatar
      · 97f61e6f
      Christophe Geuzaine authored
      Add Layer on Extrude Point (phase 2 -- remove duplicates)
      97f61e6f
  26. Mar 10, 2003
    • Christophe Geuzaine's avatar
      · b95d4510
      Christophe Geuzaine authored
      Fix crash due to identical vertex pointers in Mesh.Points and
      Mesh.Vertices
      b95d4510
  27. Mar 01, 2003
    • Christophe Geuzaine's avatar
      · 486e791b
      Christophe Geuzaine authored
      Indented all source files using utils/gmshindent
      486e791b
  28. Jan 23, 2003
  29. Nov 08, 2002
    • Christophe Geuzaine's avatar
      · 0e3acf49
      Christophe Geuzaine authored
      Introduce OpenGL display lists for drawing meshes. Does not seem to
      work much faster on my machine, though.
      0e3acf49
  30. May 20, 2002
  31. May 18, 2002
  32. Apr 26, 2002
Loading