385 lines
16 KiB
HTML
385 lines
16 KiB
HTML
<html><head><title>Material/es</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Material/es</h1></div>
|
||
|
||
<div id="mw-content-text" lang="es" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><p>This page is about the material data system in FreeCAD.
|
||
</p>
|
||
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
||
<ul>
|
||
<li class="toclevel-1 tocsection-1"><a href="#Abstract"><span class="tocnumber">1</span> <span class="toctext">Abstract</span></a></li>
|
||
<li class="toclevel-1 tocsection-2"><a href="#Rules"><span class="tocnumber">2</span> <span class="toctext">Rules</span></a></li>
|
||
<li class="toclevel-1 tocsection-3"><a href="#Tools"><span class="tocnumber">3</span> <span class="toctext">Tools</span></a></li>
|
||
<li class="toclevel-1 tocsection-4"><a href="#Material_Database"><span class="tocnumber">4</span> <span class="toctext">Material Database</span></a></li>
|
||
<li class="toclevel-1 tocsection-5"><a href="#Material.py"><span class="tocnumber">5</span> <span class="toctext">Material.py</span></a></li>
|
||
<li class="toclevel-1 tocsection-6"><a href="#The_FreeCAD_material_card_file_format"><span class="tocnumber">6</span> <span class="toctext">The FreeCAD material card file format</span></a>
|
||
<ul>
|
||
<li class="toclevel-2 tocsection-7"><a href="#Examples"><span class="tocnumber">6.1</span> <span class="toctext">Examples</span></a></li>
|
||
</ul>
|
||
</li>
|
||
<li class="toclevel-1 tocsection-8"><a href="#Material_properties"><span class="tocnumber">7</span> <span class="toctext">Material properties</span></a>
|
||
<ul>
|
||
<li class="toclevel-2 tocsection-9"><a href="#General"><span class="tocnumber">7.1</span> <span class="toctext">General</span></a></li>
|
||
<li class="toclevel-2 tocsection-10"><a href="#Mechanical"><span class="tocnumber">7.2</span> <span class="toctext">Mechanical</span></a></li>
|
||
<li class="toclevel-2 tocsection-11"><a href="#Graphical"><span class="tocnumber">7.3</span> <span class="toctext">Graphical</span></a></li>
|
||
<li class="toclevel-2 tocsection-12"><a href="#Thermal"><span class="tocnumber">7.4</span> <span class="toctext">Thermal</span></a></li>
|
||
<li class="toclevel-2 tocsection-13"><a href="#Architecture_and_BIM"><span class="tocnumber">7.5</span> <span class="toctext">Architecture and BIM</span></a></li>
|
||
</ul>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<h2><span class="mw-headline" id="Abstract">Abstract</span></h2>
|
||
<p>Since it is hard, or even impossible, to define a fixed or complete set of material properties, we go a more open way. Every object in FreeCAD which
|
||
has to deal with material will have a Property named "Material", which is a key/value list that can hold an infinite number of material properties. Since this is a very open and extensible way to deal with such data, it also holds the danger of chaos. Therefore this page defines some rules and basic properties for dealing with such material-property-maps.
|
||
</p>
|
||
<h2><span class="mw-headline" id="Rules">Rules</span></h2>
|
||
<p>Every property set has only one mandatory entry which is "Name". This is the primary key of the material. The rest of the material properties are optional or can be retrieved out of a material DB.
|
||
</p><p>Property names (key) are ordered by strings separated by underscores. The first substring is named by the application or standard, the following can be used to further group the properties. The Values can also be grouped by underscores, e.g. to separate different sorts of steel. Examples:
|
||
</p>
|
||
<ul><li> Name=Steel_Cast</li>
|
||
<li> SpecificWeight=7.85 (at 20° in kg/mm3)</li>
|
||
<li> EN10027_name = S235JR+AR (steel standard EN 10027-1)</li>
|
||
<li> FEM_YoungsModulus = xx (in mm−1·kg·s−2)</li>
|
||
<li> FEM_YoungsModulus_Z</li>
|
||
<li> FEM_YoungsModulus_X</li></ul>
|
||
<p>Each property has a human readably description on this Material page, with links to further information (e.g. Wikipedia).
|
||
</p><p>For each property a unit has to be defined, based on the FreeCAD internal unit mm-kg-s! That allows consistent usage and translation.
|
||
</p><p>The key (name) and the value of the property uses only ASCII characters (7-bit). The keys are written in Camel-Case but interpreted case-insensitive.
|
||
</p><p>The underscores allow later a tree view property editor/viewer which allow folding.
|
||
</p>
|
||
<h2><span class="mw-headline" id="Tools">Tools</span></h2>
|
||
<p>There are some good resources out there handle materials more easy:
|
||
</p>
|
||
<ul><li> <a rel="nofollow" class="external text" href="http://www.dimensionengine.com/">Units calculater</a> to get your material information in the Unit needed for FreeCAD</li>
|
||
<li> <a rel="nofollow" class="external free" href="http://www.matweb.com/">http://www.matweb.com/</a> <a rel="nofollow" class="external text" href="http://matweb.com/reference/terms.aspx">free of charge</a> Material database with thousands of material values</li></ul>
|
||
<h2><span class="mw-headline" id="Material_Database">Material Database</span></h2>
|
||
<p>Given that above standard is implemented, it would be stupid to store all the properties again and again to objects. Basically we can build up a Material DB with the Name as a primary key. So if you have no special needs for your material, you just define e.g. Name=Steel and FreeCAD can retrieve all properties from that DB. Every additional property you set in the map overrides the one from the DB.
|
||
</p><p>In the future we can host that DB somwhere in the Web and build up a general OpenSource material DB.
|
||
</p><p>At the moment I think of a compiled in mini dataset with a set of "basic" materials and its basic properties and a SQLite based full version.
|
||
</p>
|
||
<h2><span class="mw-headline" id="Material.py">Material.py</span></h2>
|
||
<p>Since handling material-properties is a tedious work we should implement a Python front-end module calls Material.py. This will be the place to implement all kind of helper methods for material handling.
|
||
</p>
|
||
<ul><li> Calculation of Mass out of Volume and Density</li>
|
||
<li> Translation in different unit systems</li>
|
||
<li> Calculation needed in special application (e.g. FEM)</li>
|
||
<li> and anything else we don't know yet </li></ul>
|
||
<p>The module should be implemented that way it can run in FreeCAD or stand alone on the command line (material-property-map has be given as python map).
|
||
</p>
|
||
<h2><span class="mw-headline" id="The_FreeCAD_material_card_file_format">The FreeCAD material card file format</span></h2>
|
||
<p>Working with materials means often import/export material-definitions. There fore a file format is needed. Since we have only key/value form, we can use a simple and easy to read and parse file format. There fore the <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/INI_file">ini-file</a> format is chosen. Its standardized and there are already parser available. E.g the <a rel="nofollow" class="external text" href="http://docs.python.org/2/library/configparser.html">Config parser module in python</a>.
|
||
</p><p>Each material definition reside in a file with the ending .FCMat. Some of this files are part of the FreeCAD source and get compiled into the binary. This is to save overhead in distribution and access. But also files can be placed and searched on different places to allow additional non-standard material definitions.
|
||
</p>
|
||
<h3><span class="mw-headline" id="Examples">Examples</span></h3>
|
||
<pre>; last modified 1 April 2001 by John Doe
|
||
|
||
Name=Steel_Cast
|
||
Father=Steel
|
||
Source=Some material book everyone knows (or not) ;Some comment
|
||
|
||
[EN10027]
|
||
; steel standard EN 10027-1
|
||
Name=S235JR+AR
|
||
|
||
[Graphic]
|
||
Color_Emissiv = 255,255,255
|
||
</pre>
|
||
<h2><span class="mw-headline" id="Material_properties">Material properties</span></h2>
|
||
<p>Here now the description of agreed material-properties. Feel free to add a subsection for the material-properties of you field of expertise.
|
||
</p>
|
||
<h3><span class="mw-headline" id="General">General</span></h3>
|
||
<table border="1" style="text-align:left; width:80%;">
|
||
<caption> General material properties
|
||
</caption>
|
||
<tr>
|
||
<th> property name
|
||
</th>
|
||
<th> Description
|
||
</th>
|
||
<th> Unit/Data-Type
|
||
</th></tr>
|
||
<tr>
|
||
<th> Name
|
||
</th>
|
||
<td> Unique name of the property, following the rules described above </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> Father
|
||
</th>
|
||
<td> Name of the material group this material belongs to. If defined this material inherits all the father properties. That means if not defined the father properties will be used. </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> Description
|
||
</th>
|
||
<td> A placeholder for a longer description of the material </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> SpecificWeight
|
||
</th>
|
||
<td> The specific weight (also known as the unit weight) is the weight per unit volume of a material. see: <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Specific_weight">Specific_weight</a> </td>
|
||
<td> kg/mm^3
|
||
</td></tr>
|
||
<tr>
|
||
<th> Vendor
|
||
</th>
|
||
<td> Specifies the brand or vendor of the material </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> ProductURL
|
||
</th>
|
||
<td> An URL where to find more information about the material </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> SpecificPrice
|
||
</th>
|
||
<td> The price per unit of this material. Units can vary a lot (USD/m³, EUR/piece, etc...) </td>
|
||
<td> ASCII string 7-bit
|
||
</td></tr></table>
|
||
<p><b>ToDos:</b> add some properties with an ordering system for materials (metal, alloy, mineral, wood, ....)
|
||
</p>
|
||
<h3><span class="mw-headline" id="Mechanical">Mechanical</span></h3>
|
||
<table border="1" style="text-align:left; width:80%;">
|
||
<caption> Material properties used in mechanical or structural engineering
|
||
</caption>
|
||
<tr>
|
||
<th> property name
|
||
</th>
|
||
<th> Description
|
||
</th>
|
||
<th> Unit/Data-Type
|
||
</th></tr>
|
||
<tr>
|
||
<th> Young's Modulus
|
||
</th>
|
||
<td> Young's modulus, also known as the tensile modulus or elastic modulus, is a measure of the stiffness of an elastic material and is a quantity used to characterize materials. See: <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Young%27s_modulus">Young's modulus</a>
|
||
</td>
|
||
<td> kg*mm^-1*s^-2 (kPa)
|
||
</td></tr>
|
||
<tr>
|
||
<th> Poisson's Ratio
|
||
</th>
|
||
<td> The lateral contraction of materials under tension as a fraction of their elongation. See: <a rel="nofollow" class="external text" href="https://en.wikipedia.org/wiki/Poisson%27s_ratio">Poisson's Ratio</a>
|
||
</td>
|
||
<td> Dimensionless (-)
|
||
</td></tr>
|
||
<tr>
|
||
<th> Yield Strength
|
||
</th>
|
||
<td> The stress at which a ductile material (like steel) starts to develop plastic (irreversible) deformation. See: <a rel="nofollow" class="external text" href="https://en.wikipedia.org/wiki/Yield_(engineering)">Yield Strength</a>
|
||
</td>
|
||
<td> N'*mm^-2 (MPa)
|
||
</td></tr>
|
||
<tr>
|
||
<th>Ultimate Tensile Strength (UTS)
|
||
</th>
|
||
<td> The stress at which the material ruptures. For ductile materials this may be after experiencing significant plastic deformation (see Yield Strength). For brittle material Yield strength and Ultimate Tensile Strength coincide. See: <a rel="nofollow" class="external text" href="https://en.wikipedia.org/wiki/Ultimate_tensile_strength">UTS</a>
|
||
</td>
|
||
<td> N'*mm^-2 (MPa)
|
||
</td></tr>
|
||
<tr>
|
||
<th>Yield Points
|
||
</th>
|
||
<td> Used in a FEM non-linear material object to describe a ductile uni-axial stress-strain curve of a material. The values are entered as (yield stress, plastic strain) tuples, where the first combination is (Yield Strength, 0) and the last (UTS, Fracture Strain) See: <a rel="nofollow" class="external text" href="https://en.wikipedia.org/wiki/Work_hardening">YieldPoints</a>
|
||
</td>
|
||
<td> (N'*mm^-2 (MPa), dimensionless (-)
|
||
</td></tr>
|
||
<tr>
|
||
<th>Uniaxial Compressive Strength (FCK)
|
||
</th>
|
||
<td> The compressive strength of concrete, defined as the strength of a 150 mm size cube tested at 28 days. See <a rel="nofollow" class="external text" href="http://eurocodes.jrc.ec.europa.eu/doc/WS2008/EN1992_1_Walraven.pdf">FCK</a>
|
||
</td>
|
||
<td> N'*mm^-2 (MPa)
|
||
</td></tr>
|
||
<tr>
|
||
<th>Friction Angle (PHI)
|
||
</th>
|
||
<td> The angle of internal friction of a granular material like sand or concrete, as used in the Mohr-Coulomb yield criterion. See <a rel="nofollow" class="external text" href="https://en.wikipedia.org/wiki/Mohr%E2%80%93Coulomb_theory">PHI</a>
|
||
</td>
|
||
<td> degrees (-)
|
||
</td></tr>
|
||
<tr>
|
||
<th>Hardness
|
||
</th>
|
||
<td> Des...
|
||
</td>
|
||
<td>
|
||
</td></tr>
|
||
<tr>
|
||
<th> EN-10027-1
|
||
</th>
|
||
<td> In case of steel material the <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Steel_grades">Steel grade</a> as defined in the <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/European_Committee_for_Standardization">European standard</a> No. 10027-1. </td>
|
||
<td> string ASCII 7-bit
|
||
</td></tr></table>
|
||
<p><b>ToDos:</b> further add properties needed for mechanical design.
|
||
</p>
|
||
<h3><span class="mw-headline" id="Graphical">Graphical</span></h3>
|
||
<p>This section defines material-properties which are related to the visual appearance of the material. The
|
||
</p>
|
||
<table border="1" style="text-align:left; width:80%;">
|
||
<caption> visual appearance
|
||
</caption>
|
||
<tr>
|
||
<th> property name
|
||
</th>
|
||
<th> Description
|
||
</th>
|
||
<th> Unit/Data-Type
|
||
</th></tr>
|
||
<tr>
|
||
<th> AmbientColor
|
||
</th>
|
||
<td> Ambient color in the Coin3D color model</td>
|
||
<td> float,float,float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> DiffuseColor
|
||
</th>
|
||
<td> Diffuse color in the Coin3D color model</td>
|
||
<td> float,float,float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> SpecularColor
|
||
</th>
|
||
<td> Specular color in the Coin3D color model</td>
|
||
<td> float,float,float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> EmissiveColor
|
||
</th>
|
||
<td> Emissive color in the Coin3D color model</td>
|
||
<td> float,float,float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> Shininess
|
||
</th>
|
||
<td> Ambient color in the Coin3D color model</td>
|
||
<td> float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> Transparency
|
||
</th>
|
||
<td> Ambient color in the Coin3D color model</td>
|
||
<td> float range: 0.0-1.0
|
||
</td></tr>
|
||
<tr>
|
||
<th> VertxShader
|
||
</th>
|
||
<td> Vertex shader program as defined in <a rel="nofollow" class="external text" href="http://de.wikipedia.org/wiki/OpenGL_Shading_Language">GlSl</a> </td>
|
||
<td> Multi line string ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> FragmentShader
|
||
</th>
|
||
<td> Fragment shader program as defined in <a rel="nofollow" class="external text" href="http://de.wikipedia.org/wiki/OpenGL_Shading_Language">GlSl</a> </td>
|
||
<td> Multi line string ASCII 7-bit
|
||
</td></tr></table>
|
||
<p><br />
|
||
</p>
|
||
<h3><span class="mw-headline" id="Thermal">Thermal</span></h3>
|
||
<table border="1" style="text-align:left; width:80%;">
|
||
<caption> Thermal properties
|
||
</caption>
|
||
<tr>
|
||
<th> property name
|
||
</th>
|
||
<th> Description
|
||
</th>
|
||
<th> Unit/Data-Type
|
||
</th></tr>
|
||
<tr>
|
||
<th> ThermalConductivity
|
||
</th>
|
||
<td> The <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Thermal_conductivity">thermal conductivity (R or lambda coefficient)</a> that indicates the capacity to transfer heat of a material </td>
|
||
<td> W/m²K
|
||
</td></tr>
|
||
<tr>
|
||
<th> ThermalExpansionCoefficient
|
||
</th>
|
||
<td> </td>
|
||
<td>
|
||
</td></tr>
|
||
<tr>
|
||
<th> SpecificHeat
|
||
</th>
|
||
<td> </td>
|
||
<td>
|
||
</td></tr></table>
|
||
<h3><span class="mw-headline" id="Architecture_and_BIM">Architecture and BIM</span></h3>
|
||
<table border="1" style="text-align:left; width:80%;">
|
||
<caption> Material properties used in architectural design
|
||
</caption>
|
||
<tr>
|
||
<th> property name
|
||
</th>
|
||
<th> Description
|
||
</th>
|
||
<th> Unit/Data-Type
|
||
</th></tr>
|
||
<tr>
|
||
<th> StandardFormat
|
||
</th>
|
||
<td> The standard specification system used in this material (ASTM, MasterFormat, CSI, OmniClass, etc...)</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> StandardCode
|
||
</th>
|
||
<td> The specific code of this material in the above standard format</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> FireStandard
|
||
</th>
|
||
<td> The fire rating standard used in the material</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> FireClass
|
||
</th>
|
||
<td> The <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Fire-resistance_rating">fire resistance class</a> of the material in the above standard</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> SoundTransmission
|
||
</th>
|
||
<td> The sound transmission coefficient of this material </td>
|
||
<td> W/m²K
|
||
</td></tr>
|
||
<tr>
|
||
<th> Finish
|
||
</th>
|
||
<td> The type of finishing/coating of this material</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> Color
|
||
</th>
|
||
<td> The color of this material</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr>
|
||
<tr>
|
||
<th> UnitsArea
|
||
</th>
|
||
<td> The number of units of this material necessary to fill a certain area</td>
|
||
<td> String ASCII 7-bit
|
||
</td></tr></table>
|
||
<p><b>ToDos:</b> add sustainability & LEED properties
|
||
</p>
|
||
</div>
|
||
|
||
|
||
|
||
</div>
|
||
|
||
</div><div class="printfooter">
|
||
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Material/es&oldid=288878">http://www.freecadweb.org/wiki/index.php?title=Material/es&oldid=288878</a>"</div>
|
||
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
||
</div>
|
||
</div>
|
||
<div id="mw-navigation">
|
||
<h2>Navigation menu</h2>
|
||
|
||
</body></html> |