Hello,
I am looking for a solution to load UDF from the pyfluent API. Following the API reference, I ended up with this minimal code:
solver = pyfluent.launch_fluent()
solver.settings.file.read_case(file_name=".my_mesh.msh.h5")
solver.settings.setup.user_defined.load(udf_library_name="libudf")
But, this give me an error saying that there is no user_defined attribute like mentioned in the reference:
AttributeError: 'setup' object has no attribute 'user_defined'.
The most similar names are: turbo_models
I am doing something wrong or is this a bug from the API?
Thank you for the help