Multi blade row meshing example#

This basic example shows how to set up a multi blade row meshing instance and execute it in parallel.

Perform required imports#

Perform the required imports. It is assumed that the ansys-turbogrid-core package has been installed.

import pathlib
import time

install_path = pathlib.PurePath(__file__).parent.parent.as_posix()

# from ansys.turbogrid.core.multi_blade_row.multi_blade_row import MachineSizingStrategy
from ansys.turbogrid.core.multi_blade_row.multi_blade_row import multi_blade_row as MBR

Create a multi_blade_row and initialize it#

Use the Concepts NREC sample provided.

start_time = time.time()
print(f"Start time: {time.asctime(time.localtime())}")
machine = MBR()
print(machine)
tginit_path = machine.convert_ndf_to_tginit(f"{install_path}/tests/ndf/AxialFanMultiRow.ndf")
print(tginit_path)
blade_rows = machine.get_blade_rows_from_ndf(f"{install_path}/tests/ndf/AxialFanMultiRow.ndf")
print(blade_rows)

Gallery generated by Sphinx-Gallery