can PyFluent read the mesh file generated by ansys mesher or it has to be converted into any format. I kept in the same file-folder location bur throwing error. i am able to read it in fluent (2025r1)
Hello @ravi_sastry,
The Fluent session object when you have launched Fluent using launch_fluent in cell 1 is fluent and you have used session. That is the reason for your error. You can replace session with the fluent session object you have used as follows to execute the command.
fluent = pyfluent.launch_fluent()
fluent.settings.file.read_mesh(file_name="manifold.msh")