Hello
I want to use symbolicenergy for a distributed force on a Neumann boundary. For example, if my force is ‘f’ and my boundary is named ‘surface’, it is correct to use:
fes = VectorH1(mesh, order=3)
u, v = fes.TnT()
a= BilinearForm(fes)
a+= SymbolicEnergy(f*specialfc.normal(3)*u, definedon= ‘surface’)
Should I use AssembleLinearization?
Regards
Hamed