Skip to content
Snippets Groups Projects
  1. Sep 03, 2006
    • Christophe Geuzaine's avatar
      · 51ec61f3
      Christophe Geuzaine authored
      - finished Nastran BDF implementation (read+write in all BDF formats:
        free field, small field & long field)
      - improved UNV and Medit import
      - added detection of bad vertex indices in all import routines
      - fixed bug in 2nd order quad constructor
      51ec61f3
  2. Sep 01, 2006
  3. Aug 22, 2006
    • Christophe Geuzaine's avatar
      · a7d1db8a
      Christophe Geuzaine authored
      - done rewriting second order algo
      
      - small optimizations here and there to speed up the vertex array creation
        (we should get rid of List_Add & co)
      a7d1db8a
  4. Aug 12, 2006
  5. Aug 11, 2006
  6. Aug 08, 2006
  7. Aug 05, 2006
  8. Jul 25, 2006
  9. Jul 14, 2006
  10. Jul 12, 2006
  11. Jul 11, 2006
  12. Mar 08, 2006
  13. Feb 26, 2006
  14. Feb 25, 2006
  15. Feb 22, 2006
  16. Jan 29, 2006
  17. Jan 14, 2006
    • Christophe Geuzaine's avatar
      · ea74b2bb
      Christophe Geuzaine authored
      rewrote the smooth normal routines:
      
      - the averaging is now done by clusters, which is much better for
        geometries that have sharp edges  (it's a little slower, but the
        visual results are much better)
      - there is now only a single smooth normal container in the mesh
        (instead of one per surface)
      ea74b2bb
  18. Jan 06, 2006
    • Christophe Geuzaine's avatar
      airport work: · 1930bbe2
      Christophe Geuzaine authored
      - new button under the graphic window to temporarily disable mouse
        selection (speeds-up redrawing of very large models + permits to
        rotate/zoom-in a model in selection mode even when the whole screen
        is full of selectable entities--e.g. a surface mesh)
      
      - new "lasso" selection mode (to select entities using the same kind
        of lasso as the lasso zoom: just Ctrl+click, then drag the mouse in
        selection mode; the shortcuts are the same as for the lasso zoom)
      
      - it is now possible to unselect entities using the middle mouse button
        (only for the creation of physicals at the moment; not sure if it's
        useful in the other cases)
      
      - new button in visibility browser to invert the current selection
        (very useful e.g. when multiple physical entities are associated
        with a given elementary entity, in order to "peel" away the model
        when adding new physicals; cf. philou)
      
      - changed meaning of Escape shortcut (cancel lasso or toggle mouse
        selection) + restore standard fltk Escape handling for all dialog
        windows
      
      - updated copyright string
      
      - new mesh label mode (coordinates); all label types are now also
        available for mesh vertices
      
      - added option in 'Print Option' dialog to disable printing of help
        strings
      
      - added a comment string with the date when creating a new file
      
      - new snapping grid for adding points in the GUI
      1930bbe2
  19. Oct 26, 2005
    • Christophe Geuzaine's avatar
      · 64fe3e58
      Christophe Geuzaine authored
      make it possible to add second order vertices for a mesh read from
      a file (without cad)
      64fe3e58
  20. Oct 16, 2005
  21. Sep 07, 2005
  22. 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
  23. 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
  24. May 27, 2005
    • Christophe Geuzaine's avatar
      · b30c4e86
      Christophe Geuzaine authored
      add num of physical groups in stat window
      b30c4e86
  25. May 21, 2005
  26. Apr 19, 2005
  27. Jan 01, 2005
  28. 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
  29. 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
  30. Aug 13, 2004
    • Christophe Geuzaine's avatar
      · 6f7fc45a
      Christophe Geuzaine authored
      Don't call Mesh_Quality() in GetStatistics()
      6f7fc45a
  31. 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
  32. Jun 29, 2004
Loading