Finite element analysis based on nanite tessellation

I encountered the Nanite tessellation technology in Unreal Engine. It reminded me of the topology used in ANSYS or finite element analysis programs. Is it possible to use Unreal Engine to simulate seismic forces and obtain analysis results similar to the behavior of actual buildings? If not, what are the reasons?

Hi, I use Ansys in my main occupation and UE for a engineering software that I develop (you can try it for free at www.4reality.ca).

UE introduced Niagara Flesh in 5.3 that is like a FEA in realtime. I don’t tried it because is seams limited to very low mesh to be in realtime. However, the fluid module use a SPH method for fluid simulation. With right setting, you can have something usable (it’s available in beta in my software). I also used physic capabilities of UE to create a realtime DEM module for my software.

So, actually I don’t think that UE can be used for this type of simulation. But maybe there are possibilities to write custom C++ but it can be a good challenge!

I deeply appreciate your advice!
After much consideration, we have decided to try using custom C++ code.