- Thank you received: 0
Issue working in FES for DG
5 years 1 month ago #1920
by Jon
Issue working in FES for DG was created by Jon
I am trying to implement discontinuous Galerkin method for steady state Stokes equations using the following finite element space:
fes = L2(mesh,order=order_p,dim=3,dgjumps=True)
However I am running into issues where my matrix is singular. I have the code working correctly for this finite element space:
X = L2(mesh,order=order_p)
fes = FESpace([X,X,X], dgjumps=True)
When I check the number of degrees of freedom is 3 times as many, am I wrong to think they should be the same as the first finite element space? While I do have it working for this space, I would really like to have code using the first listed finite element space to more easily allow me to incorporate into other code.
I've attached both my working and non-working code.
fes = L2(mesh,order=order_p,dim=3,dgjumps=True)
However I am running into issues where my matrix is singular. I have the code working correctly for this finite element space:
X = L2(mesh,order=order_p)
fes = FESpace([X,X,X], dgjumps=True)
When I check the number of degrees of freedom is 3 times as many, am I wrong to think they should be the same as the first finite element space? While I do have it working for this space, I would really like to have code using the first listed finite element space to more easily allow me to incorporate into other code.
I've attached both my working and non-working code.
Attachments:
Time to create page: 0.100 seconds