lsdyna_mesh_reader.examples#
LS-DYNA Mesh Reader examples module.
Content reused based on the following implicit open to use license from LS-DYNA Examples.
Usage Notice from LS-DYNA
The input files and several class notes are available for download. The download is free of charge, a login is not required. All examples are presented with a brief description. You may find an example by checking a specific class or by using the search functionality of the site.
The content is prepared for educational purposes. Hence, material properties and other parameters might be non-physic for simplification.
Copyright (c) 2014 DYNAmore GmbH (www.dynamore.de) Copying for non-commercial usage allowed, if this notice is included.
Example Files#
- lsdyna_mesh_reader.examples.birdball = str#
Path to the Contact Eroding I example file. Usage:
>>> from lsdyna_mesh_reader import examples >>> import lsdyna_mesh_reader >>> deck = lsdyna_mesh_reader.Deck(examples.birdball) >>> deck LSDYNA Deck with: Node sections: 1 Element Solid sections: 1 Element Shell sections: 1
- lsdyna_mesh_reader.examples.joint_screw = str#
Path to the Joint Screw example file. Usage:
>>> from lsdyna_mesh_reader import examples >>> import lsdyna_mesh_reader >>> deck = lsdyna_mesh_reader.Deck(examples.joint_screw) >>> deck LSDYNA Deck with: Node sections: 1 Element Solid sections: 1 Element Shell sections: 1
- lsdyna_mesh_reader.examples.wheel = str#
Path to the SSD with a wheel rim example file. Usage:
>>> from lsdyna_mesh_reader import examples >>> import lsdyna_mesh_reader >>> deck = lsdyna_mesh_reader.Deck(examples.wheel) >>> deck LSDYNA Deck with: Node sections: 1 Element Solid sections: 0 Element Shell sections: 1
- lsdyna_mesh_reader.examples.bracket = str#
Path to An aluminium bracket example file. Usage:
>>> from lsdyna_mesh_reader import examples >>> import lsdyna_mesh_reader >>> deck = lsdyna_mesh_reader.Deck(examples.bracket) >>> deck LSDYNA Deck with: Node sections: 1 Element Solid sections: 0 Element Shell sections: 1
- lsdyna_mesh_reader.examples.simple_plate = str#
Path to the Square Plate Out-of-Plane Vibration (thick shell mesh) example file. Usage:
>>> from lsdyna_mesh_reader import examples >>> import lsdyna_mesh_reader >>> deck = lsdyna_mesh_reader.Deck(examples.simple_plate) >>> deck LSDYNA Deck with: Node sections: 1 Element Solid sections: 0 Element Shell sections: 1