Dear support I am trying to model a vertical axis wind turbine (VAWT) and to do so I need to declare the interfaces between the boundaries of my rotating domains. My interfaces are named as following:
['interface_rotating_zone_ext', 'interface_rotating_zone_int',
'interface_airfoil_1_ext', 'interface_airfoil_2_ext','interface_airfoil_3_ext',
'interface_airfoil_1_int', 'interface_airfoil_2_int', 'interface_airfoil_3_int']
Where each interface "_ext" needs to be paired with its shado "_int". If I create the first one using:
session.setup.mesh_interfaces.create(zone1_list='interface_rotating_zone_ext',zone2_list='interface_rotating_zone_int')
It creates ALL of them with a name convention that I don't want. It also crashes if I use
...mesh_interfaces.create(zone1_list=['interface_airfoil_1_ext','interface_rotating_zone_ext'],zone2_list=['interface_airfoil_1_int','interface_rotating_zone_int'])
Could someone guide me a bit on how to use this method correctly to set the right interfaces?