Skip to content

Latest commit

 

History

History

dolfin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

FEniCS/Dolfin examples

In this directory you will find a bunch of examples of to visualize meshes in conjunction with FEniCS/Dolfin package.

The plot() function emulates the matplotlib functionality.

Install mshr with

conda install conda-forge::mshr

To gain more control on the property of the shown objects one can access the output of the plot() method and change their properties, e.g.:

plt = plot(u_solution)
msh = plt.actors[0]
msh.color('blue').alpha(0.5).cut_with_plane()  # etc
plt.show()