###############################################################################################  
# This is a sample sheet metal material standards file. The main purpose of the file is to  
# describe how to set material parameters so that it can be read successfully by the NX Sheet  
# Metal Application. The file uses comma "," as a delimiter.
#
# Following keywords are recognised by NX Sheet metal and should be used to used to
# define data that can be used by the features.
# THICKNESS
# BEND_RADIUS
# LENGTH
# ANGLE
# K_FACTOR
# JOGGLE_DEPTH
# JOGGLE_RADIUS
# JOGGLE_LENGTH
#
# The sheet metal standards file is divided into 6 blocks. 
# The first block contains the units of the parameters in the standards file. It can be metric
# or english. A table cannot have more than one units.
# The second block contains parameters used as arguments to tables and formulas that are not
# defined in this file but must be provided by the feature.
# E.g.
# PARAMETERS
# FEATURE,JOGGLE_DEPTH
# FEATURE,ANGLE
# EXPRESSION,BAF
# END_OF_PARAMETERS
#
# The type FEATURE means that the string will be substituted by a value provided
# by the API that processes the table.  
# For e.g FEATURE JOGGLE_DEPTH means that the string JOGGLE_DEPTH will be substituted 
# by a value before it is used. 
#  
# The type EXPRESSION means that the string should correspond to an expression in the 
# part file.  
# 
# The third block contains the actual materials table 
# MATERIAL_TABLE  
# MATERIAL_NAME,BARE_OR_CLAD,ALLOY_ID,THICKNESS,BEND_RADIUS,K_FACTOR,JOGGLE_LENGTH
# unique,show,show,show,show,hide,hide
# mat1,BARE,2024,1.6,3.2,@K_FACTOR_TABLE1,@JOGGLE_LENGTH_TABLE1
# mat2,BARE,2024,1.6,3.5,@K_FACTOR_TABLE1,@JOGGLE_LENGTH_TABLE1
# mat3,CLAD,2024,1.8,@BEND_RADIUS_TABLE_1,@K_FACTOR_TABLE1,@JOGGLE_LENGTH_TABLE1
# mat4,CLAD,7075,1.8,3.5,@K_FACTOR_TABLE1,@JOGGLE_LENGTH_TABLE1
# mat5,BARE,7075,1.8,3.6,@K_FACTOR_TABLE1,@JOGGLE_LENGTH_FORMULA1
# END_OF_MATERIAL_TABLE  
# 
# The first row contains the names of the columns. The names should be one word only. 
# Users can also use the keywords to define values for parameters that are recognised 
# by NX, for e.g. THICKNESS. 
# 
# The second row decides the columns properties:  
# unique - There must be one column with this identifier. This column should contain unique  
#          names of the material.  
# show - These columns will be used for filtering data through UI.  
# hide - The values of these columns will be stored but will not be used for filtering data.  
# 
# A table entry can be a value, string, a pointer to another table or a pointer to a formula.
# pointer to tables and formulas begin with "@", for e.g. @K_FACTOR_TABLE1,
# 
# The fourth block contains secondary tables pointed to by values in the material table. 
# A secondary table can have 1,2 or 3 input parameters.,
# 
# Example of table with 1 parameter: 
# TABLE 
# NAME,BEND_RADIUS_TABLE_1,
# INPUTS,THICKNESS,
# 1.6,3.2,
# 1.7,3.2,
# 1.8,3.8,
# 1.9,4.2,
# END_OF_TABLE 
# 
# First row of the table contains a unique name of the table.  
# The second row contains the input arguments. The possible value of the input  
# arguments are defined in the first column. The API that reads this table will provide  
# the thickness value as input.  
#  
# Example of table with 2 parameters:  
# TABLE  
# NAME,JOGGLE_LENGTH_TABLE1  
# INPUTS,THICKNESS,JOGGLE_DEPTH  
# THICKNESS,3,4,4.5,5
# 1.6,5,5,6,7
# 1.8,5.5,5.7,6.5,7.4
# 2.0,5.5,5.8,6.6,7.4
# END_OF_TABLE  
#  
# The first parameter defines the values in the first column. The second parameter defines the  
# value in the first row. The value in the first column of the first row can be null or any string.  
# It is not used in a table with two parameters.  
#  
# Example of a table with 3 parameters:  
# TABLE  
# NAME, K_FACTOR_TABLE_1  
# INPUTS,THICKNESS,BEND_RADIUS,ANGLE,
# PAGE  
# 45,3.2,3.8,4,4.5
# 1.6,....  
# 1.8,....  
# 2.0.....  
# END_OF_PAGE  
# PAGE  
# 90,3.2,3.8,4,4.5
# 1.6,....  
# 1.8,....
# 2.0.....,
# END_OF_PAGE,
# END_OF_TABLE,
#,
# A table with three parameters can be considered as multiple pages of tables with two ,
# parameters. The first column of the first row contains the value( third parameter) that,
# defines each page. For e.g. PAGE 1 contains the thickness vs bend radius table of k factor,
# for a bend angle of 45 degrees. The second contains the same for 90 degrees.,
#,
# The name of the table parameters must be either one of the keywords or same as one of the,
# columns of the material table.,
# There can be multiple tables in the file but only one material table.,
#,
# The fifth block contains formulas that are used to generate expressions in NX.,
# FORMULA,
# NAME, JOGGLE_LENGTH_FORMULA1 
# INPUTS,JOGGLE_DEPTH,THICKNESS,JOGGLE_RADIUS
# sqrt( 2*JOGGLE_DEPTH*(2*JOGGLE_RADIUS + THICKNESS) - pow(JOGGLE_DEPTH,2) ) 
# END_OF_FORMULA 
#  
# The first row contains a unique formula name. The second row contains the list of 
# input parameters to the formula. The parameters must be either keywords or same as one 
# of the columns of the material table. 
# The third row contains an expression that will be recreated in NX with the parameters 
# substituted with actual values. 
#  
# The sixth block contains the standards values specific to a feature. Currently only
# Aerospace Lightening Cutout has support for a feature table. The feature table can
# be thought of as a combination of material table and a data table.
# the first row contains a unique table name. The second row contains the names of
# feature parameters. The third row contains the type of column. For feature tables
# only two types are supported, i.e. unique and show. The unique column defines the
# names of each set of feature data. All the other columns contain data values.
#
#
# Disclaimer: THIS FILE DOES NOT CONTAIN ACTUAL DATA. PLEASE MODIFY THE TABLES
#             WITH ACTUAL VALUES BEFORE USING THIS TABLE. UGS IS NOT RESPONSIBLE FOR THE
#             DATA CONTAINED IN THIS FILE. THIS FILE IS PROVIDED JUST AS A SAMPLE TO EXPLAIN
#             THE FORMATTING OF A TYPICAL MATERIAL STANDARDS FILE.
#
###############################################################################################
# Define the Units of the standards file
# It can be METRIC or ENGLISH. If METRIC length will be mm and if ENGLISH, length will be
# in.
#
UNITS, METRIC

############################################################################################### 
# 
# Define parameters to be used for secondary tables and formulas 
# 
PARAMETERS 
FEATURE,JOGGLE_DEPTH  
FEATURE,ANGLE 
EXPRESSION,BAF  
END_OF_PARAMETERS  

###############################################################################################
#
# Main material parameters table
#
MATERIAL_TABLE
Material_Name,   Bare_or_Clad,  Cat,   Type,   THICKNESS, BEND_RADIUS, NEUTRAL_FACTOR, JOGGLE_RADIUS, JOGGLE_LENGTH,            Lightening_Cutout
unique,          show,          show,  show,   show,      show,        show,           show,          hide,                     hide
Aluminum_2014,   BARE,          METAL, ISO,    0.63,      2.4,         0.33,           2.4,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
Aluminum_6061,   BARE,          METAL, ISO,    1.6,       2.4,         0.33,           2.4,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
Brass,           CLAD,          METAL, ISO,    3.0,       3.0,         0.33,           2.4,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
Bronze,          BARE,          METAL, ISO,    3.2,       4.8,         0.447,          3.2,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
Iron_Malleable,  BARE,          METAL, ISO,    3.6,       4.8,         0.447,          3.2,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
Iron_Nodular,    BARE,          METAL, ISO,    3.6,       4.8,         0.447,          5.0,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
AISI_Steel_4340, CLAD,          METAL, ISO,    4.0,       8.0,         0.447,          5.0,           @JOGGLE_LENGTH_FORMULA_1, @LIGHTENING_CUTOUT_1
END_OF_MATERIAL_TABLE

############################################################################################### 
# 
# Secondary table for Joggle Runout(Length) values  
#  
TABLE  
NAME,JOGGLE_LENGTH_TABLE_1  
INPUTS,JOGGLE_DEPTH,THICKNESS  
EMPTY,  0.63,  1.6,    3.0, 3.2,  3.2,  4
4,      1.9,   3.1,    3.5, 4.1,  4.4,  4.75
8,      2.65, 4.35,    4.9, 5.75, 6.15, 6.7
END_OF_TABLE  

###############################################################################################  
#  
# Joggle Runout formula  
FORMULA  
NAME,JOGGLE_LENGTH_FORMULA_1  
INPUTS,JOGGLE_DEPTH,THICKNESS,JOGGLE_RADIUS  
sqrt( 2*JOGGLE_DEPTH*(2*JOGGLE_RADIUS + THICKNESS) - (JOGGLE_DEPTH*JOGGLE_DEPTH) )  
END_OF_FORMULA  

###############################################################################################  
###############################################################################################      
#      
#  Example Bend Table     
#      
TABLE      
NAME,BEND_TABLE      
INPUTS,THICKNESS,BEND_RADIUS,ANGLE   
PAGE
45,1,1.2,1.6,2,2.5,3,4,5,6,8,10,12,16,20,25,28,32,36,40,45,50,63,80,100
0.63,0.55,0.64,0.79,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
1.5,0.35,0.44,0.58,0.69,0.81,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2,0.20,0.29,0.44,0.55,0.66,0.75,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2.5,0.09,0.18,0.33,0.44,0.55,0.64,0.79,0.90,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3,0.00,0.09,0.24,0.35,0.46,0.55,0.69,0.81,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3.5,0.00,0.01,0.16,0.27,0.38,0.47,0.62,0.73,0.82,0.96,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4,0.00,0.00,0.09,0.20,0.31,0.41,0.55,0.66,0.75,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4.5,0.00,0.00,0.03,0.14,0.26,0.35,0.49,0.60,0.69,0.84,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
5,0.00,0.00,0.00,0.09,0.20,0.29,0.44,0.55,0.64,0.79,0.90,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
6,0.00,0.00,0.00,0.00,0.11,0.20,0.35,0.46,0.55,0.69,0.81,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
7,0.00,0.00,0.00,0.00,0.04,0.13,0.27,0.38,0.47,0.62,0.73,0.82,0.96,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
8,0.00,0.00,0.00,0.00,0.00,0.06,0.20,0.31,0.41,0.55,0.66,0.75,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
9,0.00,0.00,0.00,0.00,0.00,0.00,0.14,0.26,0.35,0.49,0.60,0.69,0.84,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
10,0.00,0.00,0.00,0.00,0.00,0.00,0.09,0.20,0.29,0.44,0.55,0.64,0.79,0.90,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
11,0.00,0.00,0.00,0.00,0.00,0.00,0.04,0.16,0.25,0.39,0.50,0.59,0.74,0.85,0.96,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
12,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.11,0.20,0.35,0.46,0.55,0.69,0.81,0.92,0.97,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
13,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.07,0.16,0.31,0.42,0.51,0.65,0.77,0.88,0.93,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
14,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.04,0.13,0.27,0.38,0.47,0.62,0.73,0.84,0.90,0.96,1.00,1.00,1.00,1.00,1.00,1.00,1.00
15,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.09,0.24,0.35,0.44,0.58,0.69,0.81,0.86,0.93,0.99,1.00,1.00,1.00,1.00,1.00,1.00
16,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.06,0.20,0.31,0.41,0.55,0.66,0.77,0.83,0.90,0.96,1.00,1.00,1.00,1.00,1.00,1.00
17,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.03,0.17,0.28,0.38,0.52,0.63,0.74,0.80,0.87,0.93,0.98,1.00,1.00,1.00,1.00,1.00
18,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.14,0.26,0.35,0.49,0.60,0.71,0.77,0.84,0.90,0.95,1.00,1.00,1.00,1.00,1.00
19,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.12,0.23,0.32,0.46,0.58,0.69,0.74,0.81,0.87,0.92,0.98,1.00,1.00,1.00,1.00
20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.09,0.20,0.29,0.44,0.55,0.66,0.72,0.79,0.84,0.90,0.96,1.00,1.00,1.00,1.00
END_OF_PAGE     
PAGE
90,1,1.2,1.6,2,2.5,3,4,5,6,8,10,12,16,20,25,28,32,36,40,45,50,63,80,100
0.63,0.65,0.74,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
1.5,0.45,0.54,0.68,0.79,0.91,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2,0.30,0.39,0.54,0.65,0.76,0.85,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2.5,0.19,0.28,0.43,0.54,0.65,0.74,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3,0.10,0.19,0.34,0.45,0.56,0.65,0.79,0.91,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3.5,0.02,0.11,0.26,0.37,0.48,0.57,0.72,0.83,0.92,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4,0.00,0.05,0.19,0.30,0.41,0.51,0.65,0.76,0.85,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4.5,0.00,0.00,0.13,0.24,0.36,0.45,0.59,0.70,0.79,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
5,0.00,0.00,0.08,0.19,0.30,0.39,0.54,0.65,0.74,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
6,0.00,0.00,0.00,0.10,0.21,0.30,0.45,0.56,0.65,0.79,0.91,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
7,0.00,0.00,0.00,0.02,0.14,0.23,0.37,0.48,0.57,0.72,0.83,0.92,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
8,0.00,0.00,0.00,0.00,0.07,0.16,0.30,0.41,0.51,0.65,0.76,0.85,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
9,0.00,0.00,0.00,0.00,0.01,0.10,0.24,0.36,0.45,0.59,0.70,0.79,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
10,0.00,0.00,0.00,0.00,0.00,0.05,0.19,0.30,0.39,0.54,0.65,0.74,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
11,0.00,0.00,0.00,0.00,0.00,0.00,0.14,0.26,0.35,0.49,0.60,0.69,0.84,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
12,0.00,0.00,0.00,0.00,0.00,0.00,0.10,0.21,0.30,0.45,0.56,0.65,0.79,0.91,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
13,0.00,0.00,0.00,0.00,0.00,0.00,0.06,0.17,0.26,0.41,0.52,0.61,0.75,0.87,0.98,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
14,0.00,0.00,0.00,0.00,0.00,0.00,0.02,0.14,0.23,0.37,0.48,0.57,0.72,0.83,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
15,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.10,0.19,0.34,0.45,0.54,0.68,0.79,0.91,0.96,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
16,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.07,0.16,0.30,0.41,0.51,0.65,0.76,0.87,0.93,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
17,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.04,0.13,0.27,0.38,0.48,0.62,0.73,0.84,0.90,0.97,1.00,1.00,1.00,1.00,1.00,1.00,1.00
18,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.01,0.10,0.24,0.36,0.45,0.59,0.70,0.81,0.87,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00
19,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.07,0.22,0.33,0.42,0.56,0.68,0.79,0.84,0.91,0.97,1.00,1.00,1.00,1.00,1.00,1.00
20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.05,0.19,0.30,0.39,0.54,0.65,0.76,0.82,0.89,0.94,1.00,1.00,1.00,1.00,1.00,1.00
END_OF_PAGE
PAGE
135,1,1.2,1.6,2,2.5,3,4,5,6,8,10,12,16,20,25,28,32,36,40,45,50,63,80,100
0.63,0.75,0.84,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
1.5,0.55,0.64,0.78,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2,0.40,0.49,0.64,0.75,0.86,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
2.5,0.29,0.38,0.53,0.64,0.75,0.84,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3,0.20,0.29,0.44,0.55,0.66,0.75,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
3.5,0.12,0.21,0.36,0.47,0.58,0.67,0.82,0.93,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4,0.06,0.15,0.29,0.40,0.51,0.61,0.75,0.86,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
4.5,0.00,0.09,0.23,0.34,0.46,0.55,0.69,0.80,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
5,0.00,0.04,0.18,0.29,0.40,0.49,0.64,0.75,0.84,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
6,0.00,0.00,0.09,0.20,0.31,0.40,0.55,0.66,0.75,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
7,0.00,0.00,0.01,0.12,0.24,0.33,0.47,0.58,0.67,0.82,0.93,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
8,0.00,0.00,0.00,0.06,0.17,0.26,0.40,0.51,0.61,0.75,0.86,0.95,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
9,0.00,0.00,0.00,0.00,0.11,0.20,0.34,0.46,0.55,0.69,0.80,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
10,0.00,0.00,0.00,0.00,0.06,0.15,0.29,0.40,0.49,0.64,0.75,0.84,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
11,0.00,0.00,0.00,0.00,0.01,0.10,0.24,0.36,0.45,0.59,0.70,0.79,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
12,0.00,0.00,0.00,0.00,0.00,0.06,0.20,0.31,0.40,0.55,0.66,0.75,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
13,0.00,0.00,0.00,0.00,0.00,0.02,0.16,0.27,0.36,0.51,0.62,0.71,0.85,0.97,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
14,0.00,0.00,0.00,0.00,0.00,0.00,0.12,0.24,0.33,0.47,0.58,0.67,0.82,0.93,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
15,0.00,0.00,0.00,0.00,0.00,0.00,0.09,0.20,0.29,0.44,0.55,0.64,0.78,0.89,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
16,0.00,0.00,0.00,0.00,0.00,0.00,0.06,0.17,0.26,0.40,0.51,0.61,0.75,0.86,0.97,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
17,0.00,0.00,0.00,0.00,0.00,0.00,0.03,0.14,0.23,0.37,0.48,0.58,0.72,0.83,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
18,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.11,0.20,0.34,0.46,0.55,0.69,0.80,0.91,0.97,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
19,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.08,0.17,0.32,0.43,0.52,0.66,0.78,0.89,0.94,1.00,1.00,1.00,1.00,1.00,1.00,1.00,1.00
20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.06,0.15,0.29,0.40,0.49,0.64,0.75,0.86,0.92,0.99,1.00,1.00,1.00,1.00,1.00,1.00,1.00
END_OF_PAGE
END_OF_TABLE      

###############################################################################################      
# Lightening Cutout Feature Standards Table
###############################################################################################
FEATURE_TABLE
NAME,LIGHTENING_CUTOUT_1
Display Name, Diameter, Length, Die_Radius, Clearance, Angle
unique,       show,     show,   show,       show,      show
STD_DIA-35,   35,       5,      3,          7,         45
STD_DIA-55,   55,       6,      4,          6.5,       45
STD_DIA-80,   80,       7,      4,          6,         45
STD_DIA-90,   90,       8,      4,          7.5,       45
STD_DIA-120,  120,      9,      6,          8,         45
STD_DIA-180,  180,      10,     12,         28,        45
END_OF_FEATURE_TABLE

###############################################################################################      
# Bend Tool ID Standards Table
###############################################################################################
BEND_TOOL_ID_TABLE
Tool_Name,    Thickness_Min, Thickness_Max, BEND_RADIUS, NEUTRAL_FACTOR
unique,       show,          show,          show,        show
5783-3285T,   0.5,            1,             0.1,         0.33
2983-1928G,   0.5,            1,             0.2,         0.33
8852-2232T,   0.3,            0.6,           0.1,         0.44
END_OF_BEND_TOOL_ID_TABLE

###############################################################################################
###############################################################################################
