.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/Taylor_Bar/plot_taylor_bar.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_Taylor_Bar_plot_taylor_bar.py: Taylor bar example ------------------ This example is inspired by the “Taylor Bar” example on the `LS-DYNA Knowledge Base <_ls_dyna_knowledge_base>`_ site. It shows how to use PyDyna to create a keyword file for LS-DYNA and solve it within a Pythonic environment. .. LINKS AND REFERENCES .. _ls_dyna_knowledge_base: https://lsdyna.ansys.com/knowledge-base/ .. GENERATED FROM PYTHON SOURCE LINES 36-39 Perform required imports ~~~~~~~~~~~~~~~~~~~~~~~~ Import required packages, including those for the keywords, deck, and solver. .. GENERATED FROM PYTHON SOURCE LINES 39-61 .. code-block:: Python import os import pathlib import shutil import tempfile import ansys.dpf.core as dpf import matplotlib.pyplot as plt from ansys.dyna.core import Deck from ansys.dyna.core import keywords as kwd from ansys.dyna.core.pre.examples.download_utilities import EXAMPLES_PATH, DownloadManager from ansys.dyna.core.run import run_dyna workdir = tempfile.TemporaryDirectory() mesh_file_name = "taylor_bar_mesh.k" mesh_file = DownloadManager().download_file( mesh_file_name, "ls-dyna", "Taylor_Bar", destination=os.path.join(EXAMPLES_PATH, "Taylor_Bar") ) .. GENERATED FROM PYTHON SOURCE LINES 63-67 Create a deck and keywords ~~~~~~~~~~~~~~~~~~~~~~~~~~ Create a deck, which is the container for all the keywords. Then, create and append individual keywords to the deck. .. GENERATED FROM PYTHON SOURCE LINES 67-171 .. code-block:: Python def create_input_deck(initial_velocity): deck = Deck() deck.title = "Taylor-Bar Velocity - %s - Unit: t-mm-s" % initial_velocity # Define material mat_1 = kwd.Mat003(mid=1) mat_1.ro = 7.85000e-9 mat_1.e = 150000.0 mat_1.pr = 0.34 mat_1.sigy = 390.0 mat_1.etan = 90.0 # Define section sec_1 = kwd.SectionSolid(secid=1) sec_1.elform = 1 # Define part part_1 = kwd.Part(pid=1, mid=mat_1.mid, secid=sec_1.secid) # Define coordinate system cs_1 = kwd.DefineCoordinateSystem(cid=1) cs_1.xl = 1.0 cs_1.yp = 1.0 # Define initial velocity init_vel = kwd.InitialVelocityGeneration() init_vel.id = part_1.parts["pid"][0] init_vel.styp = 2 init_vel.vy = initial_velocity init_vel.icid = cs_1.cid # Define box for node set box_1 = kwd.DefineBox(boxid=1, xmn=-500, xmx=500, ymn=39.0, ymx=40.1, zmn=-500, zmx=500) # Create node set set_node_1 = kwd.SetNodeGeneral() set_node_1.sid = 1 set_node_1.option = "BOX" set_node_1.e1 = box_1.boxid # Define rigid wall rw = kwd.RigidwallPlanar(id=1) rw.nsid = set_node_1.sid rw.yt = box_1.ymx rw.yh = box_1.ymn # Define control termination control_term = kwd.ControlTermination(endtim=8.00000e-5, dtmin=0.001) # Define database cards deck_dt_out = 8.00000e-8 deck_glstat = kwd.DatabaseGlstat(dt=deck_dt_out, binary=3) deck_matsum = kwd.DatabaseMatsum(dt=deck_dt_out, binary=3) deck_nodout = kwd.DatabaseNodout(dt=deck_dt_out, binary=3) deck_elout = kwd.DatabaseElout(dt=deck_dt_out, binary=3) deck_rwforc = kwd.DatabaseRwforc(dt=deck_dt_out, binary=3) deck_d3plot = kwd.DatabaseBinaryD3Plot(dt=4.00000e-6) # Define deck history node deck_hist_node_1 = kwd.DatabaseHistoryNodeSet() deck_hist_node_1.id1 = set_node_1.sid # Append all cards to input deck deck.extend( [ deck_glstat, deck_matsum, deck_nodout, deck_elout, deck_rwforc, deck_d3plot, set_node_1, control_term, rw, box_1, init_vel, cs_1, part_1, mat_1, sec_1, deck_hist_node_1, ] ) return deck def write_input_deck(**kwargs): initial_velocity = kwargs.get("initial_velocity") wd = kwargs.get("wd") if not all((initial_velocity, wd)): raise Exception("Missing input!") deck = create_input_deck(initial_velocity) # Import mesh deck.append(kwd.Include(filename=mesh_file_name)) # Write LS-DYNA input deck os.makedirs(wd, exist_ok=True) deck.export_file(os.path.join(wd, "input.k")) shutil.copyfile(mesh_file, os.path.join(wd, mesh_file_name)) .. GENERATED FROM PYTHON SOURCE LINES 172-175 Define the Dyna solver function ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 175-182 .. code-block:: Python def run(directory): run_dyna("input.k", working_directory=directory, stream=False) assert os.path.isfile(os.path.join(directory, "d3plot")), "No result file found" .. GENERATED FROM PYTHON SOURCE LINES 183-186 Define the DPF output function ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 186-205 .. code-block:: Python def get_global_ke(directory): ds = dpf.DataSources() result_file = os.path.join(directory, "d3plot") assert os.path.isfile(result_file) ds.set_result_file_path(result_file, "d3plot") model = dpf.Model(ds) gke_op = dpf.operators.result.global_kinetic_energy() gke_op.inputs.data_sources.connect(ds) gke = gke_op.eval() field = gke.get_field(0) ke_data = field.data time_data = model.metadata.time_freq_support.time_frequencies.data_as_list return time_data, ke_data .. GENERATED FROM PYTHON SOURCE LINES 206-209 View the model ~~~~~~~~~~~~~~ etc etc .. GENERATED FROM PYTHON SOURCE LINES 209-213 .. code-block:: Python deck_for_graphic = create_input_deck(300e3) deck_for_graphic.append(kwd.Include(filename=mesh_file)) deck_for_graphic.plot() .. image-sg:: /examples/Taylor_Bar/images/sphx_glr_plot_taylor_bar_001.png :alt: plot taylor bar :srcset: /examples/Taylor_Bar/images/sphx_glr_plot_taylor_bar_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 214-217 Run a parametric solve ~~~~~~~~~~~~~~~~~~~~~~ etc etc .. GENERATED FROM PYTHON SOURCE LINES 217-245 .. code-block:: Python # Define base working directory color = ["b", "r", "g", "y"] # Specify different velocities in mm/s initial_velocities = [275.0e3, 300.0e3, 325.0e3, 350.0e3] for index, initial_velocity in enumerate(initial_velocities): # Create a folder for each parameter wd = os.path.join(workdir.name, "tb_vel_%s" % initial_velocity) pathlib.Path(wd).mkdir(exist_ok=True) # Create LS-Dyna input deck write_input_deck(initial_velocity=initial_velocity, wd=wd) # Run Solver try: run(wd) # Run PyDPF Post time_data, ke_data = get_global_ke(wd) # Add series to the plot plt.plot(time_data, ke_data, color[index], label="KE at vel. %s mm/s" % initial_velocity) except Exception as e: print(e) plt.xlabel("Time (s)") plt.ylabel("Energy (mJ)") .. rst-class:: sphx-glr-script-out .. code-block:: none Text(0, 0.5, 'Energy (mJ)') .. GENERATED FROM PYTHON SOURCE LINES 247-250 Generate graphical output ~~~~~~~~~~~~~~~~~~~~~~~~~ etc etc .. GENERATED FROM PYTHON SOURCE LINES 250-252 .. code-block:: Python plt.show() .. image-sg:: /examples/Taylor_Bar/images/sphx_glr_plot_taylor_bar_002.png :alt: plot taylor bar :srcset: /examples/Taylor_Bar/images/sphx_glr_plot_taylor_bar_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 36.400 seconds) .. _sphx_glr_download_examples_Taylor_Bar_plot_taylor_bar.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_taylor_bar.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_taylor_bar.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_taylor_bar.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_