Balaje / iVEM

Contains source code for iVEM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iVEM (Inspired by AFEM@Matlab) DOI

These set of codes are the first few steps to implement the Virtual Element Method in the easiest way possible. This piece of software can be used to solve new problems without worrying about a lot of background construction regarding mass matrix and error computation.

First prototype consisting of codes to solve simple Poisson problem, Heat equation, Benjamin-Bona-Mahony Equation. More features will be added soon.

How do I get set up?

  • This code will only run on MATLAB. Before starting to use the software, add subfolders of iVEM to the default MATLAB path. To do this:
  • Launch MATLAB.
  • cd into the directory of iVEM.
  • run startup.m
  • Begin using the software.

Example run

To solve the Poisson equation with a right hand side and a boundary condition: After setting up type the following in the MATLAB command prompt.

For k=1

Run:

f = @(x,y) 2*pi^2*sin(pi*x).*sin(pi*y); % Note: The .* is a must
g_D = @(x,y) 0*x.*y; % Must input in the same form.
mesh = load('voronoi'); % Load the "Voronoi" mesh.
u = poisson(mesh,f,g_D); % Solve the problem
plot_solution(mesh,u);
[l2err, h1err] = l2error(mesh,@(x,y)sin(pi*x)*sin(pi*y),u,1,false);

For a prettier picture try running the example examples/simple.m:

Squares

For k=2

Run:

f = @(x,y) 2*pi^2*sin(pi*x).*sin(pi*y); % Note: The .* is a must
g_D = @(x,y) 0*x.*y; % Must input in the same form.
mesh = load('smoothed-voronoi_quadratic');
plotmesh = load('smoothed-voronoi'); % Must input the corresponding linear mesh only.
usol = poisson_2(mesh, f, g_D);
exact = @(x,y)sin(pi*x)*sin(pi*y);
[l2err,h1err] = l2error(mesh,exact,usol,2,false);
%%% To plot, we select the solution points on the vertices only
noofvertices = length(plotmesh.vertices);
u_verts = usol(1:noofvertices);
plot_solution(plotmesh,u_verts);

Again, for a prettier picture try running the example examples/simple_2.m:

Voronoi

More Examples:

More examples are provided in the examples/ folder. For example, try running examples/voronoi_2.m to study the rate of convergence.

Voronoi solution Voronoi Rate

Running examples/squares_2.m gives the rate of convergence for squares.

Squares solution Squares Rate

To get help, simply type

help l2error

in the command prompt to know more.

Who do I talk to?

About

Contains source code for iVEM

License:GNU General Public License v3.0


Languages

Language:MATLAB 100.0%