ansys / ansys/pyfluent-visualization
Lack of static intellisense for various graphics objects
Open
- Dominant language
- Python
- Stars
- 53
- Forks
- 7
- Avg merge
- 4h 58m
- Merged PRs (30d)
- 1
Description
Static intellisense doesn't appear on various graphics objects while typing in IDE.
```
import ansys.fluent.core as pyfluent
from ansys.fluent.core.examples import download_file
from ansys.fluent.visualization import Graphics
solver = pyfluent.launch_fluent(dimension=2)
mesh_file = download_file("gascomb.msh", "pyfluent/tutorials/species_transport")
solver.settings.file.read_case_data(file_name="gascomb1.cas.h5")
mesh1 = Graphics(solver).Meshes["mesh1"]
mesh1.
```
It is not possible to know what attributes and methods are available at `mesh1` while typing the above code in an IDE.
Contributor guide
Assessment
This issue has not been assessed yet.