← Back to team overview

dolfin team mailing list archive

demo problem

 

I get the following linking problem when trying to execute a demo:

pc194:dolfin ale$ pkg-config dolfin --libs
-L/usr/local/lib -L/opt/local/lib -ldolfin -lxml2 -lpthread -lz -liconv -lm  

pc194:cpp ale$ ./demo 
dyld: Library not loaded: dolfin/libdolfin.dylib
  Referenced from: /Users/ale/FEniCS/dolfin/demo/pde/mixed-poisson/cpp/./demo
  Reason: image not found
Trace/BPT trap

Another question which I couldn't find this in the manual. It seems that all the elements are C0-continuous, what will then happen if I define the following in FFC:

element = VectorElement("Lagrange", "tetrahedron", 1) 
v = TestFunction(element) 
u = TrialFunction(element)
a = dot( div(grad( v )) , div(grad( u )) )*dx

Alessio

Follow ups