In the process of developing a real-time wind turbine simulation Finite Element Analysis software using three.js to visualize the calculated 3D FEA results, I am faced with a challenge. The goal is to have the displayed 3D wind turbine rotate like its physical counterpart does. Generating multiple VTK format result files per second, equating to numerous frames per second.
- My first query is whether there exists a method to showcase vtk format files or general types of FEA files (such as those outputted by FEA softwares like ANSYS or COMSOL) utilizing three.js? I am open to suggestions for file format transformations.
- Secondly, am I limited to loading 3D FEA files frame by frame through the load function? Considering that individual FEA result files can be substantial in size, and the frame rate could be adversely affected by internet quality. Perhaps pre-generating animations of several frames could lead to improved performance?