ansys / pyfluent-parametric

Pythonic interface to Ansys Fluent parametric
https://parametric.fluent.docs.pyansys.com
MIT License
19 stars 6 forks source link

Server mode #302

Open lord644 opened 3 months ago

lord644 commented 3 months ago

📝 Description of the feature

pyFluent thanks to its gRPC server mode is perfectly suited for remote computations (pyfluent.connect_to_fluent(server_info_file_name="server.txt")), but it seems that this feature doesn't propagate to pyfluent-parametric.

Indeed init.py (l.187) shows:

self.project_filepath = Path( tempfile.mkdtemp( prefix="project-", suffix=".cffdb", dir=str(Path.cwd()), # TODO: should be cwd of server ) )

Which is suitable for local simulations but not remote.

Is there any plan to release or work on that feature ? Is there any known workaround to quickly adress that issue ?

💡 Steps for implementing the feature

No response

🔗 Useful links and references

No response