Skip to content

test_child_alias_with_parent_path is failing from Fluent image update #3591

Closed
@hpohekar

Description

@hpohekar

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.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions