Difference between revisions of "FEA Region and Hole Commands"
Jump to navigation
Jump to search
m (Nairnj moved page FEA Region Command to FEA Region and Hole Commands without leaving a redirect) |
|||
Line 1: | Line 1: | ||
When using [[Create a Mesh with Images and Shapes|shapes]] to define an FEA mesh, use | When using [[Create a Mesh with Images and Shapes|shapes]] to define an FEA mesh, use <tt>Region</tt> command to define material properties for elements and use <tt>Hole</tt> commands to remove elements from the mesh. | ||
== | == Region Commands == | ||
Once the mesh is [[Create a Mesh with Images and Shapes#Introduction|ready to use shapes]], elements within shapes are assigned to materials by using a series of <tt>Region</tt> commands. | Once the mesh is [[Create a Mesh with Images and Shapes#Introduction|ready to use shapes]], elements within shapes are assigned to materials by using a series of <tt>Region</tt> commands (or <tt><Body</tt> commands in <tt>XML</tt> files). In scripted files, the <tt>Region</tt> command defines material type, thickness, and angle (needed for some [[FEA Material Models|anisotropic materials]]): | ||
Region (matid),(thick),<(angle)> | Region (matid),(thick),<(angle)> | ||
(any number of shape commands) | (any number of shape commands) | ||
EndRegion | EndRegion | ||
In <tt>XML</tt> files, the <tt><Body></tt> block is: | |||
where | where | ||
Line 16: | Line 20: | ||
Between the <tt>Region</tt> command and the subsequent <tt>EndRegion</tt> command, there can be any number of [[#Rect Command|<tt>Rect</tt>]], [[#Oval Command|<tt>Rect</tt>]], and [[#PolyPt Command|<tt>PolyPt</tt>]]commands to define the geometry whose elements will use the region's material properties. | Between the <tt>Region</tt> command and the subsequent <tt>EndRegion</tt> command, there can be any number of [[#Rect Command|<tt>Rect</tt>]], [[#Oval Command|<tt>Rect</tt>]], and [[#PolyPt Command|<tt>PolyPt</tt>]]commands to define the geometry whose elements will use the region's material properties. | ||
== Hole Commands == |
Revision as of 11:07, 13 September 2013
When using shapes to define an FEA mesh, use Region command to define material properties for elements and use Hole commands to remove elements from the mesh.
Region Commands
Once the mesh is ready to use shapes, elements within shapes are assigned to materials by using a series of Region commands (or <Body commands in XML files). In scripted files, the Region command defines material type, thickness, and angle (needed for some anisotropic materials):
Region (matid),(thick),<(angle)> (any number of shape commands) EndRegion
In XML files, the <Body> block is:
where
- (matid) is the material ID for a previously defined material.
- (thick) is the thickness of the region in mm.
- (angle) is an optional angle for the material which is only relevant for anisotropic materials. It can be entered as a number or as a user-defined function of the coordinates for the element centroid. The units are degrees.
Between the Region command and the subsequent EndRegion command, there can be any number of Rect, Rect, and PolyPtcommands to define the geometry whose elements will use the region's material properties.