.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/mbr_from_tginit_example.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_mbr_from_tginit_example.py: .. _multi_blade_row_tginit_example: Multi blade row meshing example ------------------------------- This basic example shows how to set up a multi blade row meshing instance and execute it in parallel. .. GENERATED FROM PYTHON SOURCE LINES 34-38 Perform required imports ~~~~~~~~~~~~~~~~~~~~~~~~ Perform the required imports. It is assumed that the ``ansys-turbogrid-core`` package has been installed. .. GENERATED FROM PYTHON SOURCE LINES 38-48 .. code-block:: Python 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 .. GENERATED FROM PYTHON SOURCE LINES 49-52 Create a multi_blade_row and initialize it ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Use the Concepts NREC sample provided. .. GENERATED FROM PYTHON SOURCE LINES 52-61 .. code-block:: Python 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) .. _sphx_glr_download_examples_mbr_from_tginit_example.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: mbr_from_tginit_example.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: mbr_from_tginit_example.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: mbr_from_tginit_example.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_