I noticed that the direction specification command is depending on the specific boundary condition:
Example for Total Pressure Inlet:
inBC = solver.setup.boundary_conditions.pressure_inlet["inlet"]inBC.momentum.direction_specification_method = 'Direction Vector'
Example Massflow Inlet:
inBC = solver.setup.boundary_conditions.mass_flow_inlet["inlet"]inBC.momentum.direction_specification = 'Direction Vector'
One time its "direction_specification_method", the other time itยดs "direction_specification".
I didnยดt check the other BCs. Maybe the same issue occurs also for other BC properties, which should be checked here.
Could you please change this kind of BC-common commands to be consistent for all BCs?
๐ Before submitting the issue
๐ Description of the bug
I noticed that the direction specification command is depending on the specific boundary condition:
Example for Total Pressure Inlet:
inBC = solver.setup.boundary_conditions.pressure_inlet["inlet"]
inBC.momentum.direction_specification_method = 'Direction Vector'
Example Massflow Inlet:
inBC = solver.setup.boundary_conditions.mass_flow_inlet["inlet"]
inBC.momentum.direction_specification = 'Direction Vector'
One time its "direction_specification_method", the other time itยดs "direction_specification".
I didnยดt check the other BCs. Maybe the same issue occurs also for other BC properties, which should be checked here.
Could you please change this kind of BC-common commands to be consistent for all BCs?
๐ Steps to reproduce
see description
๐ป Which operating system are you using?
Windows
๐ Which ANSYS version are you using?
v251
๐ Which Python version are you using?
3.10
๐ฆ Installed packages