Hello,
-
I want to integrate the Nedelec basis function on the mesh (for example, any triangular mesh) by applying the Gaussian quadrature rule on Fenicsx. Are there any functions that will allow me to access Gaussian points and weights for any triangle and enable me to perform this integration process? I saw a tutorial on how to integrate any function in the reference triangle, and some questions asked for old Fenics, but I want to ask how to apply it to this problem. I want to integrate any Nedelec basis function I created before by applying a Gaussian quadrature rule on any cell, not only reference/ master triangle.
-
How can I access the numerical value of any basis function (for example, V = FunctionSpace(mesh, (“Nedelec 1st kind H(curl)”, 1)) at any point on/inside the cell? For example, I want to access the value of the Nedelec basis function on the (0.25,0.25) point for the master triangle.
Thank you