I would like to know if is there any possible way to import the data of Computational Fluid Dynamics (CFD) analysis in MATLAB from ANSYS or Creo? Thank you.
In FLUENT, File--> Export-->Solution data-->File type ASCII-->choose any variable on the right side panel with option to extract data on any face/surface in the computational domain. X & Y coordinates of the mesh will be automatically exported along with any chosen variable.
In MATLAB, open the ASCII file (with extension .txt) using fscanf function with specific format and number of columns in a script. The exported data will be suitably vectorized for further analysis.
In FLUENT, File--> Export-->Solution data-->File type ASCII-->choose any variable on the right side panel with option to extract data on any face/surface in the computational domain. X & Y coordinates of the mesh will be automatically exported along with any chosen variable.
In MATLAB, open the ASCII file (with extension .txt) using fscanf function with specific format and number of columns in a script. The exported data will be suitably vectorized for further analysis.