Include(Specifications/FebioFeatures, "Specifications", 2, from="== Set Definitions for Elements, Nodes, and Surfaces ==", to="=== Progress ===")

Progress

As part of the release of FEBio2 a new file format for the input files is planned. This new format defines the Geometry in terms of named element sets, where an element set groups elements of the same type and material. Multiple named element sets can be defined. The structure is very similar to the Abaqus format in terms of element definitions. For example:

<Elements type="hex8" mat="1" name="Part01">
   <elem id="1">1,2,3,4,5,6,7,8</elem>
   <elem id="2">9,10,11,12,13,14,15,16</elem>
</Elements>
<Elements type="quad4" mat="2" name="Part02">
   <elem id="3">17,18,19,20</elem>
</Elements>

A similar structure can be added for surfaces and node sets. A specific case study might be helpful in determining the specifics of this capability.

-- ["aerdemir"] DateTime(2013-12-20T09:20:59Z) This is great initiative. Will it be possible to add the same element(node/surface) to different sets? Will set information be available in the output file? We will provide a test problem.