- Thank you received: 0
Question about mappings between reference and physical element
- rhebergens
- Topic Author
- Offline
- Junior Member
Less
More
7 years 4 weeks ago #215
by rhebergens
Hello,
I have a question regarding the transformation between reference and physical elements in NGSolve. Say I have the following spaces:
V = HDiv(mesh, order=order)
Q = L2(mesh, order=order)
M = FacetFESpace(mesh, order=order)
fes = FESpace([V, Q, M, M])
u, p, uxhat, uyhat = fes.TrialFunction()
then I assume that a Piola map is used for u when mapping between reference and physical element.
But what if we have
V = L2(mesh, order=order)
Q = L2(mesh, order=order)
M = FacetFESpace(mesh, order=order)
fes = FESpace([V, V, Q, M, M])
ux, uy, p, uxhat, uyhat = fes.TrialFunction()
u = CoefficientFunction((ux, uy))
What mapping is used now for u? If F is an affine mapping from reference to physical element, is the mapping just \hat{ux} = ux \circ F and \hat{uy} = uy \circ F ?
Thanks,
Sander
I have a question regarding the transformation between reference and physical elements in NGSolve. Say I have the following spaces:
V = HDiv(mesh, order=order)
Q = L2(mesh, order=order)
M = FacetFESpace(mesh, order=order)
fes = FESpace([V, Q, M, M])
u, p, uxhat, uyhat = fes.TrialFunction()
then I assume that a Piola map is used for u when mapping between reference and physical element.
But what if we have
V = L2(mesh, order=order)
Q = L2(mesh, order=order)
M = FacetFESpace(mesh, order=order)
fes = FESpace([V, V, Q, M, M])
ux, uy, p, uxhat, uyhat = fes.TrialFunction()
u = CoefficientFunction((ux, uy))
What mapping is used now for u? If F is an affine mapping from reference to physical element, is the mapping just \hat{ux} = ux \circ F and \hat{uy} = uy \circ F ?
Thanks,
Sander
7 years 4 weeks ago #216
by schruste
Replied by schruste on topic Question about mappings between reference and physical element
Dear Sander,
the answer is yes. Piola for Hdiv and the "direct" mapping for L2 and H1.
Best, Christoph
the answer is yes. Piola for Hdiv and the "direct" mapping for L2 and H1.
Best, Christoph
- rhebergens
- Topic Author
- Offline
- Junior Member
Less
More
- Thank you received: 0
7 years 4 weeks ago #217
by rhebergens
Replied by rhebergens on topic Question about mappings between reference and physical element
Thanks!
Sander
Sander
Time to create page: 0.108 seconds