.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/fluent-mechanical/wf_fm_02_mechanical.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_fluent-mechanical_wf_fm_02_mechanical.py: .. _ref_fluent_mechanical_02-mechanical: Thermo-mechanical assessment of representative exhaust manifold model ##################################################################### Background ---------- The turbine housing/exhaust manifold is a critical component as it is subjected to extreme temperature cycling. This induces fatigue in the housing material and leads to early failure. Simulation helps to design housing and other parts for extended service life. Thermo-mechanical workflow -------------------------- A comprehensive CFD analysis of the exhaust manifold component is executed as a steady-state examination, focusing on the specified duty cycle. This process involves two recurring duty cycles, during which the temperature and other crucial operating parameters, such as mass flow and pressure, maintain a consistent pseudo-steady state. Three unique operating conditions are chosen from the duty cycle, and steady-state calculations are performed corresponding to the exhaust gas temperature in each case. The resulting Heat Transfer Coefficients (HTCs) and temperatures at the solid-fluid interface are exported to a CSV file, which serves as the input for subsequent thermal calculations in the Mechanical run. The Mechanical run encompasses Structural Transient Thermal and Non-linear (NL) Static analyses, employing temperature-dependent Bilinear Kinematic hardening material properties for a thorough structural evaluation. In the Transient Thermal run, imported HTCs and reference temperatures from the CFD runs are mapped onto the structural mesh of the exhaust manifold assembly. External convection loads and other boundary conditions are applied to calculate the temperature distribution across the exhaust manifold assembly. Subsequently, a non-linear static analysis is conducted to determine the plastic strain, taking into account the temperature distribution calculated in the Transient Thermal solve and other relevant structural boundary conditions. This approach leads to a more impactful and precise understanding of the exhaust manifold's performance subjected to thermal cycling. .. GENERATED FROM PYTHON SOURCE LINES 67-77 .. code-block:: Python import os from pathlib import Path from ansys.mechanical.core import launch_mechanical from ansys.mechanical.core.examples import download_file from matplotlib import image as mpimg from matplotlib import pyplot as plt .. GENERATED FROM PYTHON SOURCE LINES 84-89 Parameters for the script ------------------------- The following parameters are used to control the script execution. You can modify these parameters to suit your needs. .. GENERATED FROM PYTHON SOURCE LINES 89-93 .. code-block:: Python GRAPHICS_BOOL = False # Set to True to display the graphics OUTPUT_DIR = Path(Path(__file__).parent, "outputs") # Output directory .. GENERATED FROM PYTHON SOURCE LINES 98-101 Start a PyMechanical app ------------------------ .. GENERATED FROM PYTHON SOURCE LINES 101-114 .. code-block:: Python mechanical = launch_mechanical(batch=True, cleanup_on_exit=False) print(mechanical) def display_image(image_name): plt.figure(figsize=(16, 9)) plt.imshow(mpimg.imread(os.path.join(OUTPUT_DIR, image_name))) plt.xticks([]) plt.yticks([]) plt.axis("off") plt.show() .. rst-class:: sphx-glr-script-out .. code-block:: none Ansys Mechanical [Ansys Mechanical Enterprise] Product Version:242 Software build date: 06/03/2024 09:35:09 .. GENERATED FROM PYTHON SOURCE LINES 115-119 Input files needed for the simulation ---------------- -------------------- Download the input files needed for the simulation. .. GENERATED FROM PYTHON SOURCE LINES 119-158 .. code-block:: Python geometry_path = download_file( "Exhaust_Manifold_Geometry.pmdb", "pyansys-workflow", "exhaust-manifold", "pymechanical" ) material_path = download_file( "Nonlinear_Material.xml", "pyansys-workflow", "exhaust-manifold", "pymechanical" ) # Files necessary for the thermal simulation from fluent analysis temp_htc_data_high_path = os.path.join(OUTPUT_DIR, "htc_temp_mapping_HIGH_TEMP.csv") temp_htc_data_med_path = os.path.join(OUTPUT_DIR, "htc_temp_mapping_MEDIUM_TEMP.csv") temp_htc_data_low_path = os.path.join(OUTPUT_DIR, "htc_temp_mapping_LOW_TEMP.csv") all_input_files = { "geometry_path": geometry_path, "material_path": material_path, "temp_htc_data_high_path": temp_htc_data_high_path, "temp_htc_data_med_path": temp_htc_data_med_path, "temp_htc_data_low_path": temp_htc_data_low_path, } # Upload to Mechanical Remote session server and get the file paths project_directory = mechanical.project_directory print(f"project directory = {project_directory}") for input_file_name, input_file_path in all_input_files.items(): # Upload the file to the project directory. mechanical.upload(file_name=input_file_path, file_location_destination=project_directory) # Build the path relative to project directory. base_name = os.path.basename(input_file_path) combined_path = os.path.join(project_directory, base_name) server_file_path = combined_path.replace("\\", "\\\\") mechanical.run_python_script(f"{input_file_name} = '{server_file_path}'") result = mechanical.run_python_script(f"{input_file_name}") print(f"path of {input_file_name} on server: {result}") .. rst-class:: sphx-glr-script-out .. code-block:: none project directory = /tmp/ANSYS.root.1/AnsysMech259F/Project_Mech_Files/ Uploading Exhaust_Manifold_Geometry.pmdb to dns:///127.0.0.1:10000:/tmp/ANSYS.root.1/AnsysMech259F/Project_Mech_Files/.: 0%| | 0.00/1.51M [00:00` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: wf_fm_02_mechanical.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: wf_fm_02_mechanical.zip `