omdl  v0.9.5
OpenSCAD Mechanical Design Library
iso_7091.scad
Go to the documentation of this file.
1 //! [metric/washers] Standard flat washer, wider inner diameter; ISO 7091; DIN 126.
2 /***************************************************************************//**
3  \file
4  \author Roy Allen Sutton
5  \date 2024
6 
7  \copyright
8 
9  This file is part of [omdl] (https://github.com/royasutton/omdl),
10  an OpenSCAD mechanical design library.
11 
12  The \em omdl is free software; you can redistribute it and/or modify
13  it under the terms of the [GNU Lesser General Public License]
14  (http://www.gnu.org/licenses/lgpl.html) as published by the Free
15  Software Foundation; either version 2.1 of the License, or (at
16  your option) any later version.
17 
18  The \em omdl is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  Lesser General Public License for more details.
22 
23  You should have received a copy of the GNU Lesser General Public
24  License along with the \em omdl; if not, write to the Free Software
25  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26  02110-1301, USA; or see <http://www.gnu.org/licenses/>.
27 
28  \details
29 
30  \amu_define group_name (ISO 7091)
31  \amu_define group_brief ([metric/washers] Standard flat washer, wider inner diameter; ISO 7091; DIN 126.)
32 
33  \amu_include (include/amu/pgid_path_pstem_pg.amu)
34  \amu_text parent (${parent}_Metric_Washers)
35 *******************************************************************************/
36 
37 //----------------------------------------------------------------------------//
38 
39 /***************************************************************************//**
40  \amu_include (include/amu/group_in_parent_start.amu)
41  \amu_include (include/amu/includes_required.amu)
42 
43  \details
44 
45  \amu_copy (files="diagrams/washer_flat.svg" types="html,latex")
46  \amu_text
47  (
48  \image html ${PATH_NAME}/diagrams/washer_flat.svg "parameters"
49  \image latex ${PATH_NAME}/diagrams/washer_flat.svg "parameters"
50  )
51 
52  \amu_define output_scad (false)
53  \amu_define output_console (false)
54 
55  \amu_define title (Standard flat washer, wider inner diameter)
56  \amu_define notes_table ()
57 
58  \amu_include (include/amu/scope_table.amu)
59 
60  \note The measurements in the table above are shown with:
61  \c length_unit_base="mm". These measurements will
62  convert when the base units are changed. See \ref units_length
63  for more information on setting the base units.
64 
65  | References: |
66  |:----------------|
67  | ISO 7091 |
68  | DIN 126 |
69  | [fasteners.eu] |
70 
71  [fasteners.eu]: https://www.fasteners.eu/standards/ISO/7091/
72 *******************************************************************************/
73 
74 //! <map> ISO 7091 fastener data table columns map.
75 //! \hideinitializer
77 [
78  ["ns", "nominal size"],
79  ["id_max", "internal diameter"],
80  ["id_min", "internal diameter"],
81  ["od_max", "outside diameter"],
82  ["od_min", "outside diameter"],
83  ["t_max", "thickness"],
84  ["t_min", "thickness"]
85 ];
86 
87 //! <table> ISO 7091 fastener data table rows.
88 //! \hideinitializer
90 [
91  [ "5",l_mm( 5.80),l_mm( 5.5),l_mm( 10),l_mm( 9.1),l_mm(1.2),l_mm(0.8)],
92  [ "6",l_mm( 6.96),l_mm( 6.6),l_mm( 12),l_mm(10.9),l_mm(1.9),l_mm(1.3)],
93  [ "8",l_mm( 9.36),l_mm( 9.0),l_mm( 16),l_mm(14.9),l_mm(1.9),l_mm(1.3)],
94  ["10",l_mm(11.43),l_mm(11.0),l_mm( 20),l_mm(18.7),l_mm(2.3),l_mm(1.7)],
95  ["12",l_mm(13.93),l_mm(13.5),l_mm( 24),l_mm(22.7),l_mm(2.8),l_mm(2.2)],
96  ["14",l_mm(15.93),l_mm(15.5),l_mm( 28),l_mm(26.7),l_mm(2.8),l_mm(2.2)],
97  ["16",l_mm(17.93),l_mm(17.5),l_mm( 30),l_mm(28.7),l_mm(3.6),l_mm(2.4)],
98  ["20",l_mm(22.52),l_mm(22.0),l_mm( 37),l_mm(35.4),l_mm(3.6),l_mm(2.4)],
99  ["24",l_mm(26.52),l_mm(26.0),l_mm( 44),l_mm(42.4),l_mm(4.6),l_mm(3.4)],
100  ["30",l_mm(33.62),l_mm(33.0),l_mm( 56),l_mm(54.1),l_mm(4.6),l_mm(3.4)],
101  ["36",l_mm(40.00),l_mm(39.0),l_mm( 66),l_mm(64.1),l_mm(6.0),l_mm(4.0)]
102 ];
103 
104 //! @}
105 //! @}
106 
107 //----------------------------------------------------------------------------//
108 // openscad-amu auxiliary scripts
109 //----------------------------------------------------------------------------//
110 
111 /*
112 BEGIN_SCOPE table;
113  BEGIN_OPENSCAD;
114  include <omdl-base.scad>;
115  include <database/component/fastener/iso_7091.scad>;
116 
117  // temporary override for table presentation.
118  // function l_mm(v) = round_s(length(v,"mm"), 4);
119 
120  length_unit_base = "mm";
121 
122  n = true; // number
123  hi = true; // include heading id
124  ht = true; // include heading description
125 
126  tr = dtr_fastener_metric_washers_iso_7091;
127  tc = dtc_fastener_metric_washers_iso_7091;
128 
129  table_write( tr, tc, number=n, heading_id=hi, heading_text=ht );
130 
131  // end_include
132  END_OPENSCAD;
133 
134  BEGIN_MFSCRIPT;
135  include --path "${INCLUDE_PATH}" {var_init,var_gen_term}.mfs;
136  include --path "${INCLUDE_PATH}" scr_make_mf.mfs;
137  END_MFSCRIPT;
138 END_SCOPE;
139 */
140 
141 //----------------------------------------------------------------------------//
142 // end of file
143 //----------------------------------------------------------------------------//
dtr_fastener_metric_washers_iso_7091
Definition: iso_7091.scad:296
dtc_fastener_metric_washers_iso_7091
Definition: iso_7091.scad:283
function l_mm(v)
Shorthand length conversion for millimeters.