▲ | sfpotter 5 days ago | |
Yeah. All of this is born out of a desire to avoid meshing, for some definition of meshing. I'm on a jag that explicitly meshing or computing topology should be unnecessary for this kind of simulation. People have done contact simulations based on penalty methods or Lagrange multipliers using level set descriptions of domains for quite a while, which just involve integrating over overlapping regions, which shouldn't be that hard to detect... in principle... but I'm not quite there yet. What I'm saying about level set domains is maybe a bit misleading. I'm not talking about level set methods like you might find in the book by Fedkiw and Osher, per se (but if I found something useful from that literature, I wouldn't hesitate to borrow it...). They are easy to model with and give clean geometry compared to e.g. a B-rep. I'm only interested in messing around with toy and artificial problems at this point, so it isn't much of a limitation. At the same time, given a B-rep, there are a number of ways to get clean level set geometry from them... By high-order boundary parametrization, I mean: given a implicit surface, how to quickly go to a parametric representation of the boundary which is accurate to many (say, 13+) digits that is relatively space efficient, even in the presence of sharp features in the level set (common for CSG...). This is easy in 2D, harder in 3D... I guess the subtle point here is that for a finite element simulation, the only thing that really matters is integration. For that, you only need a soup of patches; there's no real need to assemble them into a B-rep or any other kind of mesh. But then if you take a time step, you have to think about converting from parametric back to implicit. I'm trying to figure out if there is some kind of hybrid parametric-implicit data structure that is particularly useful for simulations of this type. Remains to be seen, but there are many fun geometry problems to solve along the way. |