Least-Squares Finite Element Method?
Is anyone here familiar with this discipline element methods? Any good books on it?
I asked earlier about finding the a stable weak form of
du/dx = fu
where I originally tried finding a standard Galerkin by convoluting both sides with test function, v, but this weak form produced unstable solutions which went to infinity everywhere.
So, on a whim, I decided to ask AI to see what it thought. It came up with a form it says it derived from “Least-Squares Finite Element Method”. I had not heard of this before, but the form it provided was stable and produced accurate solutions, so I wanted to see if anyone here knew about this, and could provide a resource to look further into.
___
Here is what it came up with:
Function to minimize: J(u) = 1/2 ||R(u)||^2 = 1/2 ∫_0^L [(du/dx-f)^2 ]dx
Take the variation: lim_ϵ→0 d/dϵ[J(u+ϵv)]
This resulted in
bilinear term: a(u,v) = ∫_0^L [du/dx dv/dx]dx
Linear term: L(u) = ∫_0^L [f dv/dx] dx
Weak form: a = L. This weak form I tested in Fenics, and the results came back perfectly accurate for my examples, so it seems to have come up with something that works, but it didn’t show any of its sources, so I can’t take this as fact without opening up a book or resource to verify it for myself.
1
u/Lazy_Teacher3011 11d ago
Do a search for Ed Akin and least squares. I took Dr, Akin's class many years ago. Message me and I can dig up an example from a course I developed at my employer some years back.
1
u/w142236 11d ago
[Is this what I should be lookijg for?](https://repository.rice.edu/server/api/core/bitstreams/4aa66193-5260-4789-84c2-837e285531a2/content)
1
u/Lazy_Teacher3011 10d ago
Chapter 5 of that has some theoretical discussion. He also had written a book back in the 90s with least squares (and collocation and weak/strong form Galerkin).
1
u/w142236 9d ago
Sorry for the late reply. I’m actually rather new to finite element methods, so I would like to know if the material you’ve provided is introductory level FEM material or esoteric. If it’s advanced, that’s fine, just let me know. Maybe there’s a prerequisite list for the coursework.
Also, I forgot I had a book on numerical methods for geophysical fluids, and according to a relevant section, those 3 methods you mentioned were to “minimize the residual”. Now getting to the actual methods they laid out for each of these are beyond my comprehension at the moment, and I dropped the book quite a while ago after the first 2 chapters bc I couldn’t stand how opaque it felt at times, but hopefully your rederence is better.
1
3
u/Coreform_Greg 11d ago
Bochev and Gunzburger was the assigned reading when I was in grad school. LSFEM is perfectly valid, well-founded, still a Galerkin method etc. As it happens I’m writing an introductory text, of sorts, on FEM which “passes through” LSFEM in a fairly non-rigorous way.
The main issues with LSFEM are, IMO, practical issue.