We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It works fine for 25R1 but fails for 25R2. (failing from yesterday's Fluent image update)
"constant" is now changed to "value" for 25R2.
Earlier it was -
solver.settings.setup.materials.fluid["air"] = { "density": {"option": "ideal-gas"}, "specific_heat": {"value": 1006.43, "option": "constant"}, "thermal_conductivity": {"value": 0.0242, "option": "constant"}, "molecular_weight": {"value": 28.966, "option": "constant"}, }
assert ( solver.settings.setup.models.discrete_phase.numerics.node_based_averaging.kernel._child_aliases == { "gaussian_factor": ("../gaussian_factor", "gaussian-factor"), "option": ("../kernel_type", "option"), } )
Now -
solver.settings.setup.materials.fluid["air"] = { "density": {"option": "ideal-gas"}, "specific_heat": {"value": 1006.43, "option": "value"}, "thermal_conductivity": {"value": 0.0242, "option": "value"}, "molecular_weight": {"value": 28.966, "option": "value"}, }
>>> solver.settings.setup.models.discrete_phase.numerics.node_based_averaging.kernel._child_aliases {'gaussian_factor': '../gaussian_factor', 'option': '../kernel_type'}
I tried to fix those errors first but there are also many other changes in 25R2 therefore we are skipping this test for now.
The text was updated successfully, but these errors were encountered:
https://github.com/ansys/pyfluent/actions/runs/12407588482/job/34639009304?pr=3552
Sorry, something went wrong.
mkundu1
No branches or pull requests
It works fine for 25R1 but fails for 25R2. (failing from yesterday's Fluent image update)
"constant" is now changed to "value" for 25R2.
Earlier it was -
Now -
I tried to fix those errors first but there are also many other changes in 25R2 therefore we are skipping this test for now.
The text was updated successfully, but these errors were encountered: