Finite element nodes

Hello, can freefem + + store finite element nodes instead of mesh nodes?

The question is not clear for my.

the node in freefem is the support of the degree of freefem

in 2d the node could be : vertex, edge , or element.
so you have 7 kinds of nodes

but you can have more than one dof one node.

the numbering of dof in on element is basis
start with dof on vertex 0, dof on vertex 1, dof on vertex 2, dof on edge 0, …

if Wh is a FEpase on TH
Wh(k,i) = number of dof i in element k.

thankyou very much. Using the following commands,

savemesh(Th);

the coordinates of grid nodes and boundary information are output, but with P2 element, each element needs six finite element nodes, and the information of the other three nodes is not output.

If you need the coordinate of P2 nodes

       fespace Vh(Th,P2);
       Vh X=x, Y=y;

The array X[], and Y[] gives the coordinate of the P2 node.