ansys / pyfluent

Pythonic interface to Ansys Fluent
https://fluent.docs.pyansys.com
MIT License
245 stars 41 forks source link

Settings API minor improvements #2613

Open mkundu1 opened 4 months ago

mkundu1 commented 4 months ago
  1. For commands with no arguments, argument_names attribute can return an empty list. Currently, that attribute is not available.
  2. contour1 = solver.results.graphics.contour.create("contour-1")
    del contour1

    In the above, the __del__ method can call __delitem__ on the container.

prmukherj commented 1 month ago

the point 1 of this task is done. Need to figure out ways to do point 2.