marcolocascio / vemlab

VEMLab: a MATLAB library for the virtual element method

Home Page:http://camlab.cl/research/software/vemlab/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VEMLab: a MATLAB library for the virtual element method

This repository contains the code for an open source MATLAB library for the virtual element method.

Features

  • Two-dimensional linear elastostatics (plane strain and plane stress) and two-dimensional Poisson problem.
  •    
  • Solution methods: Linear VEM (polygonal elements), FEM (3-node triangles, 4-node quadrilateral).
  •    
  • Boundary conditions: Dirichlet, Neumann on boundary edges; can be a constant or a function.
  •      
  • Meshers: PolyMesher, distmesh2d, quad4mesh; PolyMesher is customized for rectangular domain, wrench domain and plate with a hole domain; distmesh2d and quad4mesh are customized for rectangular domain only. Domains can be extended for any of the meshers, but it requires adjustments to some interface functions (see the instructions that are available in functions create_polygonal_mesh.m, create_quadrilateral_mesh.m and create_triangular_mesh.m in folder “mesher”).
  •      
  • Meshes need to be generated separately and saved to folder “test/mesh_files.”
  •    
  • Meshes must be generated with the functions “create_” located in the folder “mesher.” Then, the files containing the generated meshes will be automatically saved to folder “test/mesh_files” for their use.
  •    
  • Solutions can be plotted to MATLAB figures, text files, GiD files and VTK files.
  •  

About plotting capabilities

Currently, the MATLAB plotting of stresses and strains (linear elastostatic problem) or fluxes and gradients (Poisson problem) is very limited and won't recognize holes that might come with the domain geometries. It will work ok with rectangular geometries without holes, but the mesh will need to be very refined to obtain a colormap on the whole geometry ... just try a coarse mesh and then a refined mesh to see what is being said. If quality colormap plots are required for stresses, strains, fluxes and gradients, it is highly recommended using the GiD output files to visualize them in "GiD the pre and postprocessor" (www.gidhome.com). On the other hand, the MATLAB plotting of primary field variables (like displacements) presents no limitations and produces quality colormaps.

Author

Alejandro Ortiz-Bernardin

Running VEMLab

VEMLab is a library. You need to create a main .m file and place it inside the folder “test.” The main file has the typical structure of a FEM simulation. Simply follow the test problems (they are given with detailed comments) that are provided inside the folder “test” to write your own .m files or modify the ones provided. Alternatively, you can read the manual that is available in the folder 'doc.'

License

This project is licensed under the GPL3 License. This program is free software; it can be redistributed or modified under the terms of the GNU General Public License 3 as published by the Free Software Foundation.

About

VEMLab: a MATLAB library for the virtual element method

http://camlab.cl/research/software/vemlab/

License:GNU General Public License v3.0


Languages

Language:MATLAB 97.8%Language:C++ 2.2%Language:M 0.0%