Spaces:
Sleeping
Sleeping
Upload 12 files
Browse files- src/data/data/Combine/CombineCSV.py +21 -0
- src/data/data/Combine/Fibers_material_data.csv +342 -0
- src/data/data/Combine/Fibers_material_data_.csv +55 -0
- src/data/data/Combine/combined_material_data.csv +396 -0
- src/data/data/Composites_material_data.csv +0 -0
- src/data/data/Convertxl_CSV.py +16 -0
- src/data/data/Fibers_material_data.csv +396 -0
- src/data/data/M77793.json +861 -0
- src/data/data/Polymers_material_data.csv +0 -0
- src/data/data/csv_out/Composites_material_data.xlsx +0 -0
- src/data/data/csv_out/Composites_material_data_old.csv +0 -0
- src/data/data/csv_out/Sheet1.csv +0 -0
src/data/data/Combine/CombineCSV.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
import os
|
| 3 |
+
import glob
|
| 4 |
+
|
| 5 |
+
csv_folder = r"C:\Users\varam\Documents\2026_Jan_LatestV_ProjectInDes\Abhi_Code\code\5_2_database\data\Combine" # folder containing CSVs
|
| 6 |
+
output_file = "combined_material_data.csv"
|
| 7 |
+
|
| 8 |
+
all_files = glob.glob(os.path.join(csv_folder, "*.csv"))
|
| 9 |
+
|
| 10 |
+
dfs = []
|
| 11 |
+
|
| 12 |
+
for file in all_files:
|
| 13 |
+
df = pd.read_csv(file)
|
| 14 |
+
df["source_file"] = os.path.basename(file) # optional but useful
|
| 15 |
+
dfs.append(df)
|
| 16 |
+
|
| 17 |
+
combined_df = pd.concat(dfs, ignore_index=True)
|
| 18 |
+
|
| 19 |
+
combined_df.to_csv(output_file, index=False)
|
| 20 |
+
|
| 21 |
+
print("All CSV files combined successfully")
|
src/data/data/Combine/Fibers_material_data.csv
ADDED
|
@@ -0,0 +1,342 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
material_name,material_abbreviation,section,property_name,value,unit,english,test_condition,comments,source_file
|
| 2 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,2026-01-21T21-37_export.csv
|
| 3 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,2026-01-21T21-37_export.csv
|
| 4 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,2026-01-21T21-37_export.csv
|
| 5 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,2026-01-21T21-37_export.csv
|
| 6 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,2026-01-21T21-37_export.csv
|
| 7 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,2026-01-21T21-37_export.csv
|
| 8 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,2026-01-21T21-37_export.csv
|
| 9 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,2026-01-21T21-49_export.csv
|
| 10 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,2026-01-21T21-49_export.csv
|
| 11 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,2026-01-21T21-49_export.csv
|
| 12 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,2026-01-21T21-49_export.csv
|
| 13 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,2026-01-21T21-49_export.csv
|
| 14 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,2026-01-21T21-49_export.csv
|
| 15 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,2026-01-21T21-49_export.csv
|
| 16 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,2026-01-21T21-51_export.csv
|
| 17 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,2026-01-21T21-51_export.csv
|
| 18 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,2026-01-21T21-51_export.csv
|
| 19 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,2026-01-21T21-51_export.csv
|
| 20 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,2026-01-21T21-51_export.csv
|
| 21 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,2026-01-21T21-51_export.csv
|
| 22 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,2026-01-21T21-51_export.csv
|
| 23 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,2026-01-21T21-51_export.csv
|
| 24 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,2026-01-21T21-51_export.csv
|
| 25 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,2026-01-21T21-51_export.csv
|
| 26 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,2026-01-21T21-51_export.csv
|
| 27 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,2026-01-21T21-51_export.csv
|
| 28 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,2026-01-21T21-51_export.csv
|
| 29 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,2026-01-21T21-51_export.csv
|
| 30 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,2026-01-21T21-51_export.csv
|
| 31 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,2026-01-21T21-51_export.csv
|
| 32 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,2026-01-21T21-51_export.csv
|
| 33 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,2026-01-21T21-51_export.csv
|
| 34 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,2026-01-21T21-51_export.csv
|
| 35 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,2026-01-21T21-51_export.csv
|
| 36 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,2026-01-21T21-51_export.csv
|
| 37 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,2026-01-21T21-51_export.csv
|
| 38 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,2026-01-21T21-51_export.csv
|
| 39 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,2026-01-21T21-51_export.csv
|
| 40 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,2026-01-21T21-51_export.csv
|
| 41 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,2026-01-21T21-51_export.csv
|
| 42 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,2026-01-21T21-51_export.csv
|
| 43 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,2026-01-21T21-51_export.csv
|
| 44 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,2026-01-21T21-51_export.csv
|
| 45 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,2026-01-21T21-51_export.csv
|
| 46 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,2026-01-21T21-53_export.csv
|
| 47 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,2026-01-21T21-53_export.csv
|
| 48 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,2026-01-21T21-53_export.csv
|
| 49 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,2026-01-21T21-53_export.csv
|
| 50 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,2026-01-21T21-53_export.csv
|
| 51 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,2026-01-21T21-53_export.csv
|
| 52 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,2026-01-21T21-53_export.csv
|
| 53 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,2026-01-21T21-53_export.csv
|
| 54 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,2026-01-21T21-53_export.csv
|
| 55 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,2026-01-21T21-53_export.csv
|
| 56 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05e+12,ohm-cm,9.05e+12 ohm-cm,,,2026-01-21T21-53_export.csv
|
| 57 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,2026-01-21T21-53_export.csv
|
| 58 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,2026-01-21T21-53_export.csv
|
| 59 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,2026-01-21T21-53_export.csv
|
| 60 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,2026-01-21T21-53_export.csv
|
| 61 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",2026-01-21T21-53_export.csv
|
| 62 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,2026-01-21T21-53_export.csv
|
| 63 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,2026-01-21T21-53_export.csv
|
| 64 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,2026-01-21T21-53_export.csv
|
| 65 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,2026-01-21T21-53_export.csv
|
| 66 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,2026-01-21T21-53_export.csv
|
| 67 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",2026-01-21T21-53_export.csv
|
| 68 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,2026-01-21T21-53_export.csv
|
| 69 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,2026-01-21T21-53_export.csv
|
| 70 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,2026-01-21T21-53_export.csv
|
| 71 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,2026-01-21T21-53_export.csv
|
| 72 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,2026-01-21T21-53_export.csv
|
| 73 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,2026-01-21T21-53_export_.csv
|
| 74 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,2026-01-21T21-53_export_.csv
|
| 75 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,2026-01-21T21-53_export_.csv
|
| 76 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,2026-01-21T21-53_export_.csv
|
| 77 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,2026-01-21T21-53_export_.csv
|
| 78 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,2026-01-21T21-53_export_.csv
|
| 79 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,2026-01-21T21-53_export_.csv
|
| 80 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,2026-01-21T21-53_export_.csv
|
| 81 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,2026-01-21T21-53_export_.csv
|
| 82 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,2026-01-21T21-53_export_.csv
|
| 83 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,2026-01-21T21-53_export_.csv
|
| 84 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,2026-01-21T21-53_export_.csv
|
| 85 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,2026-01-21T21-54_export.csv
|
| 86 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,2026-01-21T21-54_export.csv
|
| 87 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,2026-01-21T21-54_export.csv
|
| 88 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,2026-01-21T21-54_export.csv
|
| 89 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,2026-01-21T21-54_export.csv
|
| 90 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,2026-01-21T21-54_export.csv
|
| 91 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,2026-01-21T21-54_export.csv
|
| 92 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,2026-01-21T21-54_export.csv
|
| 93 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,2026-01-21T21-54_export.csv
|
| 94 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,2026-01-21T21-54_export.csv
|
| 95 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02e+12,ohm-cm,4.02e+12 ohm-cm,,,2026-01-21T21-54_export.csv
|
| 96 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,2026-01-21T21-54_export.csv
|
| 97 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,2026-01-21T21-54_export.csv
|
| 98 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,2026-01-21T21-54_export.csv
|
| 99 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,2026-01-21T21-54_export.csv
|
| 100 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,2026-01-21T21-54_export.csv
|
| 101 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,2026-01-21T21-54_export.csv
|
| 102 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,2026-01-21T21-54_export.csv
|
| 103 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,2026-01-21T21-54_export.csv
|
| 104 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,2026-01-21T21-54_export.csv
|
| 105 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,2026-01-21T21-54_export.csv
|
| 106 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,2026-01-21T21-54_export.csv
|
| 107 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,2026-01-21T21-54_export.csv
|
| 108 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,2026-01-21T21-54_export.csv
|
| 109 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,2026-01-21T21-54_export.csv
|
| 110 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,2026-01-21T21-54_export.csv
|
| 111 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,2026-01-21T21-54_export.csv
|
| 112 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,2026-01-21T21-54_export.csv
|
| 113 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,2026-01-21T21-54_export.csv
|
| 114 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,2026-01-21T21-54_export.csv
|
| 115 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,2026-01-21T21-54_export.csv
|
| 116 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,2026-01-21T21-54_export.csv
|
| 117 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,2026-01-21T21-55_export.csv
|
| 118 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,2026-01-21T21-55_export.csv
|
| 119 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,2026-01-21T21-55_export.csv
|
| 120 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,2026-01-21T21-55_export.csv
|
| 121 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,2026-01-21T21-55_export.csv
|
| 122 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,2026-01-21T21-55_export.csv
|
| 123 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,2026-01-21T21-55_export.csv
|
| 124 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,2026-01-21T21-55_export.csv
|
| 125 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 126 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 127 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 128 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 129 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 130 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 131 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 132 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 133 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 134 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 135 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 136 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 137 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 138 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 139 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,Fibers_material_data.csv
|
| 140 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,Fibers_material_data.csv
|
| 141 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,Fibers_material_data.csv
|
| 142 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,Fibers_material_data.csv
|
| 143 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,Fibers_material_data.csv
|
| 144 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,Fibers_material_data.csv
|
| 145 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,Fibers_material_data.csv
|
| 146 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,Fibers_material_data.csv
|
| 147 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,Fibers_material_data.csv
|
| 148 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,Fibers_material_data.csv
|
| 149 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,Fibers_material_data.csv
|
| 150 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,Fibers_material_data.csv
|
| 151 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,Fibers_material_data.csv
|
| 152 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,Fibers_material_data.csv
|
| 153 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,Fibers_material_data.csv
|
| 154 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,Fibers_material_data.csv
|
| 155 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,Fibers_material_data.csv
|
| 156 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,Fibers_material_data.csv
|
| 157 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,Fibers_material_data.csv
|
| 158 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,Fibers_material_data.csv
|
| 159 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,Fibers_material_data.csv
|
| 160 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,Fibers_material_data.csv
|
| 161 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,Fibers_material_data.csv
|
| 162 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,Fibers_material_data.csv
|
| 163 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,Fibers_material_data.csv
|
| 164 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,Fibers_material_data.csv
|
| 165 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,Fibers_material_data.csv
|
| 166 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,Fibers_material_data.csv
|
| 167 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,Fibers_material_data.csv
|
| 168 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,Fibers_material_data.csv
|
| 169 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,Fibers_material_data.csv
|
| 170 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,Fibers_material_data.csv
|
| 171 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,Fibers_material_data.csv
|
| 172 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,Fibers_material_data.csv
|
| 173 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,Fibers_material_data.csv
|
| 174 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,Fibers_material_data.csv
|
| 175 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 176 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,Fibers_material_data.csv
|
| 177 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,Fibers_material_data.csv
|
| 178 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,Fibers_material_data.csv
|
| 179 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05E+12,ohm-cm,9.05e+12 ohm-cm,,,Fibers_material_data.csv
|
| 180 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,Fibers_material_data.csv
|
| 181 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 182 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,Fibers_material_data.csv
|
| 183 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 184 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",Fibers_material_data.csv
|
| 185 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 186 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 187 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 188 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,Fibers_material_data.csv
|
| 189 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,Fibers_material_data.csv
|
| 190 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",Fibers_material_data.csv
|
| 191 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,Fibers_material_data.csv
|
| 192 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,Fibers_material_data.csv
|
| 193 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,Fibers_material_data.csv
|
| 194 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,Fibers_material_data.csv
|
| 195 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,Fibers_material_data.csv
|
| 196 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,Fibers_material_data.csv
|
| 197 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,Fibers_material_data.csv
|
| 198 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 199 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,Fibers_material_data.csv
|
| 200 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,Fibers_material_data.csv
|
| 201 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,Fibers_material_data.csv
|
| 202 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,Fibers_material_data.csv
|
| 203 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 204 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 205 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,Fibers_material_data.csv
|
| 206 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,Fibers_material_data.csv
|
| 207 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,Fibers_material_data.csv
|
| 208 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,Fibers_material_data.csv
|
| 209 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,Fibers_material_data.csv
|
| 210 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 211 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,Fibers_material_data.csv
|
| 212 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,Fibers_material_data.csv
|
| 213 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 214 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,Fibers_material_data.csv
|
| 215 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 216 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,Fibers_material_data.csv
|
| 217 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,Fibers_material_data.csv
|
| 218 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02E+12,ohm-cm,4.02e+12 ohm-cm,,,Fibers_material_data.csv
|
| 219 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 220 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 221 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,Fibers_material_data.csv
|
| 222 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 223 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 224 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 225 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,Fibers_material_data.csv
|
| 226 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 227 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 228 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 229 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,Fibers_material_data.csv
|
| 230 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,Fibers_material_data.csv
|
| 231 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,Fibers_material_data.csv
|
| 232 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,Fibers_material_data.csv
|
| 233 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,Fibers_material_data.csv
|
| 234 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,Fibers_material_data.csv
|
| 235 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,Fibers_material_data.csv
|
| 236 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,Fibers_material_data.csv
|
| 237 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,Fibers_material_data.csv
|
| 238 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,Fibers_material_data.csv
|
| 239 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,Fibers_material_data.csv
|
| 240 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,Fibers_material_data.csv
|
| 241 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,Fibers_material_data.csv
|
| 242 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,Fibers_material_data.csv
|
| 243 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,Fibers_material_data.csv
|
| 244 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 245 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 246 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,Fibers_material_data.csv
|
| 247 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,Fibers_material_data.csv
|
| 248 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Strength,4900,MPa,500 kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data_.csv
|
| 249 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Modulus,230,GPa,23.5 10³kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data_.csv
|
| 250 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Elongation,2.1,%,2.10%,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data_.csv
|
| 251 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Density,1.8,g/cm³,1.80 g/cm³,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-003.,Fibers_material_data_.csv
|
| 252 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,800,g/1000m,800 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 12 000. Method: TY-QA-004.,Fibers_material_data_.csv
|
| 253 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,1650,g/1000m,1650 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 24 000. Method: TY-QA-004.,Fibers_material_data_.csv
|
| 254 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Specific Heat,0.18,Cal/g.°C,0.18 Cal/g.°C,,Nominal value.,Fibers_material_data_.csv
|
| 255 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Electric Resistivity,1.6,x 10⁻³Ω.cm,1.6 x 10⁻³Ω.cm,,Nominal value.,Fibers_material_data_.csv
|
| 256 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,CTE,-0.38,α10⁻⁶/°C,-0.38 α10⁻⁶/°C,,Nominal value.,Fibers_material_data_.csv
|
| 257 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Thermal Conductivity,0.0224,Cal/cm.s.°C,0.0224 Cal/cm.s.°C,,Nominal value.,Fibers_material_data_.csv
|
| 258 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Filament Diameter,7,µm,7 µm,,Nominal value.,Fibers_material_data_.csv
|
| 259 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.44,mm²,0.44 mm²,,Nominal value. Filament Count: 12 000.,Fibers_material_data_.csv
|
| 260 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.92,mm²,0.92 mm²,,Nominal value. Filament Count: 24 000.,Fibers_material_data_.csv
|
| 261 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strength,2550,MPa,260 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 262 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Modulus,135,GPa,14.0 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 263 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strain,1.7,%,1.70%,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 264 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Compressive Strength,1470,MPa,150 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 265 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Flexural Modulus,120,GPa,12.3 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 266 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,ILSS,69,MPa,7 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data_.csv
|
| 267 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of fiber,Basfiber®,,Basfiber,,,Fibers_material_data_.csv
|
| 268 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Monofilament diameter,From 10 to 22,µm,Range 10 to 22 micrometers,,,Fibers_material_data_.csv
|
| 269 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Linear density,270-4800,tex,Range 270 to 4800 tex,,,Fibers_material_data_.csv
|
| 270 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of sizing,"11, 12, 13, 15 and 42.",,Sizing types available,,,Fibers_material_data_.csv
|
| 271 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Sizing content,≥0.4,% wt.,Greater than or equal to 0.4 weight percent,,Minimum content,Fibers_material_data_.csv
|
| 272 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Resin compatibility,"Polyester, vinyl ester, epoxy polyurethane",,"Compatible with Polyester, vinyl ester, epoxy polyurethane resins",,,Fibers_material_data_.csv
|
| 273 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Moisture content,<0.1,% wt.,Less than 0.1 weight percent,,,Fibers_material_data_.csv
|
| 274 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Melting Range,1460-1500,°C,1460 to 1500 degrees Celsius,,,Fibers_material_data_.csv
|
| 275 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Crystallization temperature,1250,°C,1250 degrees Celsius,,,Fibers_material_data_.csv
|
| 276 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Sintering Temperature,1050,°C,1050 degrees Celsius,,,Fibers_material_data_.csv
|
| 277 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Thermal Conductivity,0.031-0.038,W/(m·K),Range 0.031 to 0.038 W/(m·K),,,Fibers_material_data_.csv
|
| 278 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,E-modulus,2900-3200,GPa,Range 2900 to 3200 GPa,ASTM D2343,"Applies to RDR-10.90, RDR-11.110, RDR-13.150, RDR-17.250, RDR-17.600, RDR-19.600 series.",Fibers_material_data_.csv
|
| 279 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,90-94,MPa,Range 90 to 94 MPa,ASTM D2343,For RDR-10.90,Fibers_material_data_.csv
|
| 280 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,89-93,MPa,Range 89 to 93 MPa,ASTM D2343,For RDR-11.110,Fibers_material_data_.csv
|
| 281 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,88-92,MPa,Range 88 to 92 MPa,ASTM D2343,For RDR-13.150,Fibers_material_data_.csv
|
| 282 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,86-90,MPa,Range 86 to 90 MPa,ASTM D2343,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data_.csv
|
| 283 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥750,mN/tex,Greater than or equal to 750 mN/tex,ASTM D3822,"For RDR-10.90, RDR-11.110",Fibers_material_data_.csv
|
| 284 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D3822,For RDR-13.150,Fibers_material_data_.csv
|
| 285 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D3822,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data_.csv
|
| 286 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D-3822,Monofilament diameter 10 µm,Fibers_material_data_.csv
|
| 287 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D-3822,Monofilament diameter 13 µm,Fibers_material_data_.csv
|
| 288 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 600,mN/tex,Greater than or equal to 600 mN/tex,ASTM D-3822,Monofilament diameter 17 µm,Fibers_material_data_.csv
|
| 289 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3200,MPa,3200 MPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data_.csv
|
| 290 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3100,MPa,3100 MPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data_.csv
|
| 291 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),2900,MPa,2900 MPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data_.csv
|
| 292 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),90-94,GPa,Range 90 to 94 GPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data_.csv
|
| 293 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),88-92,GPa,Range 88 to 92 GPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data_.csv
|
| 294 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),86-90,GPa,Range 86 to 90 GPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data_.csv
|
| 295 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4300,MPa,4300 MPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data_.csv
|
| 296 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4200,MPa,4200 MPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data_.csv
|
| 297 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4000,MPa,4000 MPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data_.csv
|
| 298 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),95,GPa,95 GPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data_.csv
|
| 299 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),93,GPa,93 GPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data_.csv
|
| 300 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),92,GPa,92 GPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data_.csv
|
| 301 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.2,%,0.2% weight loss,3-hour boiling in water,,Fibers_material_data_.csv
|
| 302 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.35,%,0.35% weight loss,3-hour boiling in saturated cement solution (pH 12.9),,Fibers_material_data_.csv
|
| 303 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),7-Feb,%,2% to 7% weight loss,3-hour boiling in 2N solution HCl (hydrochloric acid),,Fibers_material_data_.csv
|
| 304 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6,%,6% weight loss,3-hour boiling in 2N solution NaOH (sodium hydroxide),,Fibers_material_data_.csv
|
| 305 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6-Feb,%,2% to 6% weight loss,30 minutes and in 180 minutes in H2SO4 (sulphuric acid),,Fibers_material_data_.csv
|
| 306 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Sizing Content,"0,4-0,8",% WEIGHT,Range 0.4 to 0.8 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data_.csv
|
| 307 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Moisture Content,"<0,1",% WEIGHT,Less than 0.1 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data_.csv
|
| 308 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From -260 up to +400,°C,-260 to +400 degrees Celsius,Permanent thermal load duration,,Fibers_material_data_.csv
|
| 309 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 1),Up to +200,°C,Up to +200 degrees Celsius,,Amorphous fiber with sizing on the fiber surface,Fibers_material_data_.csv
|
| 310 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 2),From +200 up to +350,°C,+200 to +350 degrees Celsius,,"Burning of sizing (10-15 minutes), amorphous fiber",Fibers_material_data_.csv
|
| 311 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 3),From +350 up to +400,°C,+350 to +400 degrees Celsius,,Amorphous fiber without sizing on the fiber surface,Fibers_material_data_.csv
|
| 312 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +400 up to +850,°C,+400 to +850 degrees Celsius,Short term (few minutes),Short term (few minutes). Also Stage 4: transition of FeO into Fe2O3 and beginning of crystallization,Fibers_material_data_.csv
|
| 313 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +850 up to +1250,°C,+850 to +1250 degrees Celsius,Short term (few seconds),,Fibers_material_data_.csv
|
| 314 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 5),From +850 up to +1050,°C,+850 to +1050 degrees Celsius,,"All the Fe2O3 is in crystal form. Material is extremely brittle, mechanical properties are extremely poor, but works as thermal insulation.",Fibers_material_data_.csv
|
| 315 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Sintering Temperature (Stage 6),From +1050 up to +1250,°C,+1050 to +1250 degrees Celsius,,Sintering temperature,Fibers_material_data_.csv
|
| 316 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,100,%,100% retention,+20°C,Baseline measurement,Fibers_material_data_.csv
|
| 317 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,95,%,95% retention,+200°C,,Fibers_material_data_.csv
|
| 318 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,80,%,80% retention,+400°C,,Fibers_material_data_.csv
|
| 319 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Product Range,Deniers Range,50-5400,denier,50 to 5400 denier,,Range of available deniers for UHMWPE fibers.,Fibers_material_data_.csv
|
| 320 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Breaking Tenacity,28,g/d,28.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 321 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 322 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Elongation @ Break,3.6,%,3.6 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 323 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Tensile Modulus,850,g/d,850 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 324 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 325 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 326 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 327 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 328 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 329 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Breaking Tenacity,38,g/d,38.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 330 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 331 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Elongation @ Break,3.1,%,3.1 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 332 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Tensile Modulus,1250,g/d,1250 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 333 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 334 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 335 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 336 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 337 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data_.csv
|
| 338 |
+
SE2350 single-end Type 30 roving,SE2350,STRAND TENSILES,Strength,2240,MPA,325,Amine/DER 331 Epoxy Resin; ASTM D 2343,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data_.csv
|
| 339 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Dry Shear Strength,64.4,MPA,9340,Amine/DER 331 Epoxy Resin; ASTM D 2344,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data_.csv
|
| 340 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Shear Strength Retention,95,%,95%,Amine/DER 331 Epoxy Resin; ASTM D 2344; 72 HR BOIL,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data_.csv
|
| 341 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Yield,250,,250,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data_.csv
|
| 342 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Tex,2000,Tex,2000,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data_.csv
|
src/data/data/Combine/Fibers_material_data_.csv
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
source_file,material_name,material_abbreviation,section,property_name,value,unit,english,test_condition,comments
|
| 2 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Typical fiber property
|
| 3 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filler Content,62.0,%,62.0 %,,Fiber Volume of Typical epoxy composite
|
| 4 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filament Diameter,6.9,µm,6.9 µm,,
|
| 5 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",2140,MPa,310000 psi,,Typical epoxy composite
|
| 6 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",4470,MPa,648000 psi,,Typical fiber property
|
| 7 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Elongation at Break,1.9,%,1.9 %,,Calculated from tow test data
|
| 8 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,136,GPa,19700 ksi,,Typical epoxy composite
|
| 9 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,221,GPa,32100 ksi,,Typical fiber property; Chord 6000-1000
|
| 10 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Strength,1725,MPa,250200 psi,,Typical epoxy composite
|
| 11 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Modulus,128,GPa,18600 ksi,,Typical epoxy composite
|
| 12 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Shear Strength,124,MPa,18000 psi,,Typical epoxy composite
|
| 13 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Component Elements Properties,"Carbon, C",94,%,94 %,,Fiber
|
| 14 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,1.25,m/g,,,12K
|
| 15 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,2.5,m/g,,,6K
|
| 16 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,5,m/g,,,3K
|
| 17 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Filament Shape,Round,,,,
|
| 18 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.11,mm2,,,3K
|
| 19 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.22,mm2,,,6K
|
| 20 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.44,mm2,,,12K
|
| 21 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Twist,,,,,
|
| 22 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.2,g/m,,,3K
|
| 23 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.4,g/m,,,6K
|
| 24 |
+
MaterialData_101292.pdf,Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.8,g/m,,,12K
|
| 25 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Specific Gravity,1.24,g/cc,1.24 g/cc,,ASTM D792
|
| 26 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Melt Density,1.08,g/cc,0.0390 lb/in³,,ASTM D1238
|
| 27 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Viscosity Measurement,3.3,,3.3,@Temperature 230 °C,Relative Viscosity; CD Internal Viscotek Method (English test condition: @Temperature 446 °F)
|
| 28 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Elongation at Break,10 - 70,%,10 - 70 %,,Fiber; ASTM D2256/ASTM D3822
|
| 29 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Tenacity,0.221 - 0.353,N/tex,2.50 - 4.00 g/denier,,ASTM D2256/ASTM D3822
|
| 30 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Melting Point,145 - 155,°C,293 - 311 °F,,ASTM D3418
|
| 31 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,"Glass Transition Temp, Tg",55.0 - 65.0,°C,131 - 149 °F,,ASTM D3417
|
| 32 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Shrinkage,<= 8.0,%,<= 8.0 %,"@Temperature 120 °C, Time 600 sec","Hot Air; ASTM D2102 (English test condition: @Temperature 248 °F, Time 0.167 hour)"
|
| 33 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Dew Point,-35.0,°C,-31.0 °F,,
|
| 34 |
+
MaterialData_103488.pdf,NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Drying Air Flow Rate,>= 14.2,l/min,>= 0.500 ft³/min (CFM),,
|
| 35 |
+
MaterialData_185340.pdf,DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Density,1.79,g/cc,0.0647 lb/in³,,ISO 10119
|
| 36 |
+
MaterialData_185340.pdf,DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Fiber Count,16000,dtex,14400 denier,,ISO 1889
|
| 37 |
+
MaterialData_185340.pdf,DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Strength,4900,MPa,711000 psi,,ISO 10618
|
| 38 |
+
MaterialData_185340.pdf,DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Elongation at Break,2,%,2.0 %,,ISO 10618
|
| 39 |
+
MaterialData_185340.pdf,DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Modulus,250,GPa,36300 ksi,,ISO 10618
|
| 40 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Density,3.08,g/cc,0.111 lb/in³,,
|
| 41 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Thickness,142,microns,5.59 mil,,Diameter
|
| 42 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,"Tensile Strength, Ultimate",5900,MPa,856000 psi,,
|
| 43 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,Modulus of Elasticity,415,GPa,60200 ksi,,
|
| 44 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Thermal Properties,"CTE, linear",4.10,µm/m-°C,2.28 µin/in-°F,@Temperature 20.0 °C @Temperature 68.0 °F,
|
| 45 |
+
MaterialData_265375.pdf,SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Descriptive Properties,Cross Section,Round,,,,
|
| 46 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Bulk Density,0.220,g/cc,0.00795 lb/in³,,
|
| 47 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Fiber Density
|
| 48 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Filament Diameter,7.5,µm,7.5 µm,,
|
| 49 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Tensile Strength at Break,3600,MPa,522000 psi,,ASTM D3379-104
|
| 50 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Elongation at Break,1.4-1.8,%,1.4-1.8 %,,ASTM D3379-75
|
| 51 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Modulus of Elasticity,225,GPa,32600 ksi,,ASTM D3379-104
|
| 52 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Electrical Properties,Volume Resistivity,0.0016,ohm-cm,0.0016 ohm-cm,,
|
| 53 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Carbon Content,>95,wt %,,,
|
| 54 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Mean Fiber Length,0.155,mm,,,Milled
|
| 55 |
+
MaterialData_5754.pdf,"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Sizing Content,1.5 - 6.5,% by weight,,,
|
src/data/data/Combine/combined_material_data.csv
ADDED
|
@@ -0,0 +1,396 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
material_name,material_abbreviation,section,property_name,value,unit,english,test_condition,comments,source_file
|
| 2 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 3 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 4 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 5 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 6 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 7 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 8 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 9 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 10 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 11 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 12 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 13 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 14 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 15 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 16 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,Fibers_material_data.csv
|
| 17 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,Fibers_material_data.csv
|
| 18 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,Fibers_material_data.csv
|
| 19 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,Fibers_material_data.csv
|
| 20 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,Fibers_material_data.csv
|
| 21 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,Fibers_material_data.csv
|
| 22 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,Fibers_material_data.csv
|
| 23 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,Fibers_material_data.csv
|
| 24 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,Fibers_material_data.csv
|
| 25 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,Fibers_material_data.csv
|
| 26 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,Fibers_material_data.csv
|
| 27 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,Fibers_material_data.csv
|
| 28 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,Fibers_material_data.csv
|
| 29 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,Fibers_material_data.csv
|
| 30 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,Fibers_material_data.csv
|
| 31 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,Fibers_material_data.csv
|
| 32 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,Fibers_material_data.csv
|
| 33 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,Fibers_material_data.csv
|
| 34 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,Fibers_material_data.csv
|
| 35 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,Fibers_material_data.csv
|
| 36 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,Fibers_material_data.csv
|
| 37 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,Fibers_material_data.csv
|
| 38 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,Fibers_material_data.csv
|
| 39 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,Fibers_material_data.csv
|
| 40 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,Fibers_material_data.csv
|
| 41 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,Fibers_material_data.csv
|
| 42 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,Fibers_material_data.csv
|
| 43 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,Fibers_material_data.csv
|
| 44 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,Fibers_material_data.csv
|
| 45 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,Fibers_material_data.csv
|
| 46 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,Fibers_material_data.csv
|
| 47 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,Fibers_material_data.csv
|
| 48 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,Fibers_material_data.csv
|
| 49 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,Fibers_material_data.csv
|
| 50 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,Fibers_material_data.csv
|
| 51 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,Fibers_material_data.csv
|
| 52 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 53 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,Fibers_material_data.csv
|
| 54 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,Fibers_material_data.csv
|
| 55 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,Fibers_material_data.csv
|
| 56 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05e+12,ohm-cm,9.05e+12 ohm-cm,,,Fibers_material_data.csv
|
| 57 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,Fibers_material_data.csv
|
| 58 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 59 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,Fibers_material_data.csv
|
| 60 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 61 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",Fibers_material_data.csv
|
| 62 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 63 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 64 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 65 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,Fibers_material_data.csv
|
| 66 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,Fibers_material_data.csv
|
| 67 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",Fibers_material_data.csv
|
| 68 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,Fibers_material_data.csv
|
| 69 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,Fibers_material_data.csv
|
| 70 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,Fibers_material_data.csv
|
| 71 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,Fibers_material_data.csv
|
| 72 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,Fibers_material_data.csv
|
| 73 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,Fibers_material_data.csv
|
| 74 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,Fibers_material_data.csv
|
| 75 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 76 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,Fibers_material_data.csv
|
| 77 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,Fibers_material_data.csv
|
| 78 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,Fibers_material_data.csv
|
| 79 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,Fibers_material_data.csv
|
| 80 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 81 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 82 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,Fibers_material_data.csv
|
| 83 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,Fibers_material_data.csv
|
| 84 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,Fibers_material_data.csv
|
| 85 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,Fibers_material_data.csv
|
| 86 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,Fibers_material_data.csv
|
| 87 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 88 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,Fibers_material_data.csv
|
| 89 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,Fibers_material_data.csv
|
| 90 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 91 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,Fibers_material_data.csv
|
| 92 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 93 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,Fibers_material_data.csv
|
| 94 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,Fibers_material_data.csv
|
| 95 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02e+12,ohm-cm,4.02e+12 ohm-cm,,,Fibers_material_data.csv
|
| 96 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 97 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 98 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,Fibers_material_data.csv
|
| 99 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 100 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 101 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 102 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,Fibers_material_data.csv
|
| 103 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 104 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 105 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 106 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,Fibers_material_data.csv
|
| 107 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,Fibers_material_data.csv
|
| 108 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,Fibers_material_data.csv
|
| 109 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,Fibers_material_data.csv
|
| 110 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,Fibers_material_data.csv
|
| 111 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,Fibers_material_data.csv
|
| 112 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,Fibers_material_data.csv
|
| 113 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,Fibers_material_data.csv
|
| 114 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,Fibers_material_data.csv
|
| 115 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,Fibers_material_data.csv
|
| 116 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,Fibers_material_data.csv
|
| 117 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,Fibers_material_data.csv
|
| 118 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,Fibers_material_data.csv
|
| 119 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,Fibers_material_data.csv
|
| 120 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,Fibers_material_data.csv
|
| 121 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 122 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 123 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,Fibers_material_data.csv
|
| 124 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,Fibers_material_data.csv
|
| 125 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 126 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 127 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 128 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 129 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 130 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 131 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 132 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 133 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 134 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 135 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 136 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 137 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 138 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 139 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,Fibers_material_data.csv
|
| 140 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,Fibers_material_data.csv
|
| 141 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,Fibers_material_data.csv
|
| 142 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,Fibers_material_data.csv
|
| 143 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,Fibers_material_data.csv
|
| 144 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,Fibers_material_data.csv
|
| 145 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,Fibers_material_data.csv
|
| 146 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,Fibers_material_data.csv
|
| 147 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,Fibers_material_data.csv
|
| 148 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,Fibers_material_data.csv
|
| 149 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,Fibers_material_data.csv
|
| 150 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,Fibers_material_data.csv
|
| 151 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,Fibers_material_data.csv
|
| 152 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,Fibers_material_data.csv
|
| 153 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,Fibers_material_data.csv
|
| 154 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,Fibers_material_data.csv
|
| 155 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,Fibers_material_data.csv
|
| 156 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,Fibers_material_data.csv
|
| 157 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,Fibers_material_data.csv
|
| 158 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,Fibers_material_data.csv
|
| 159 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,Fibers_material_data.csv
|
| 160 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,Fibers_material_data.csv
|
| 161 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,Fibers_material_data.csv
|
| 162 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,Fibers_material_data.csv
|
| 163 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,Fibers_material_data.csv
|
| 164 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,Fibers_material_data.csv
|
| 165 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,Fibers_material_data.csv
|
| 166 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,Fibers_material_data.csv
|
| 167 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,Fibers_material_data.csv
|
| 168 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,Fibers_material_data.csv
|
| 169 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,Fibers_material_data.csv
|
| 170 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,Fibers_material_data.csv
|
| 171 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,Fibers_material_data.csv
|
| 172 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,Fibers_material_data.csv
|
| 173 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,Fibers_material_data.csv
|
| 174 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,Fibers_material_data.csv
|
| 175 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 176 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,Fibers_material_data.csv
|
| 177 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,Fibers_material_data.csv
|
| 178 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,Fibers_material_data.csv
|
| 179 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05E+12,ohm-cm,9.05e+12 ohm-cm,,,Fibers_material_data.csv
|
| 180 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,Fibers_material_data.csv
|
| 181 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 182 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,Fibers_material_data.csv
|
| 183 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 184 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",Fibers_material_data.csv
|
| 185 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 186 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 187 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 188 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,Fibers_material_data.csv
|
| 189 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,Fibers_material_data.csv
|
| 190 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",Fibers_material_data.csv
|
| 191 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,Fibers_material_data.csv
|
| 192 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,Fibers_material_data.csv
|
| 193 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,Fibers_material_data.csv
|
| 194 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,Fibers_material_data.csv
|
| 195 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,Fibers_material_data.csv
|
| 196 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,Fibers_material_data.csv
|
| 197 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,Fibers_material_data.csv
|
| 198 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 199 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,Fibers_material_data.csv
|
| 200 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,Fibers_material_data.csv
|
| 201 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,Fibers_material_data.csv
|
| 202 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,Fibers_material_data.csv
|
| 203 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 204 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 205 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,Fibers_material_data.csv
|
| 206 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,Fibers_material_data.csv
|
| 207 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,Fibers_material_data.csv
|
| 208 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,Fibers_material_data.csv
|
| 209 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,Fibers_material_data.csv
|
| 210 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 211 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,Fibers_material_data.csv
|
| 212 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,Fibers_material_data.csv
|
| 213 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 214 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,Fibers_material_data.csv
|
| 215 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 216 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,Fibers_material_data.csv
|
| 217 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,Fibers_material_data.csv
|
| 218 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02E+12,ohm-cm,4.02e+12 ohm-cm,,,Fibers_material_data.csv
|
| 219 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 220 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 221 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,Fibers_material_data.csv
|
| 222 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 223 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 224 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 225 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,Fibers_material_data.csv
|
| 226 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 227 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 228 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 229 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,Fibers_material_data.csv
|
| 230 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,Fibers_material_data.csv
|
| 231 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,Fibers_material_data.csv
|
| 232 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,Fibers_material_data.csv
|
| 233 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,Fibers_material_data.csv
|
| 234 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,Fibers_material_data.csv
|
| 235 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,Fibers_material_data.csv
|
| 236 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,Fibers_material_data.csv
|
| 237 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,Fibers_material_data.csv
|
| 238 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,Fibers_material_data.csv
|
| 239 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,Fibers_material_data.csv
|
| 240 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,Fibers_material_data.csv
|
| 241 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,Fibers_material_data.csv
|
| 242 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,Fibers_material_data.csv
|
| 243 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,Fibers_material_data.csv
|
| 244 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 245 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 246 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,Fibers_material_data.csv
|
| 247 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,Fibers_material_data.csv
|
| 248 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Strength,4900,MPa,500 kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 249 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Modulus,230,GPa,23.5 10³kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 250 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Elongation,2.1,%,2.10%,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 251 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Density,1.8,g/cm³,1.80 g/cm³,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-003.,Fibers_material_data.csv
|
| 252 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,800,g/1000m,800 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 12 000. Method: TY-QA-004.,Fibers_material_data.csv
|
| 253 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,1650,g/1000m,1650 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 24 000. Method: TY-QA-004.,Fibers_material_data.csv
|
| 254 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Specific Heat,0.18,Cal/g.°C,0.18 Cal/g.°C,,Nominal value.,Fibers_material_data.csv
|
| 255 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Electric Resistivity,1.6,x 10⁻³Ω.cm,1.6 x 10⁻³Ω.cm,,Nominal value.,Fibers_material_data.csv
|
| 256 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,CTE,-0.38,α10⁻⁶/°C,-0.38 α10⁻⁶/°C,,Nominal value.,Fibers_material_data.csv
|
| 257 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Thermal Conductivity,0.0224,Cal/cm.s.°C,0.0224 Cal/cm.s.°C,,Nominal value.,Fibers_material_data.csv
|
| 258 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Filament Diameter,7,µm,7 µm,,Nominal value.,Fibers_material_data.csv
|
| 259 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.44,mm²,0.44 mm²,,Nominal value. Filament Count: 12 000.,Fibers_material_data.csv
|
| 260 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.92,mm²,0.92 mm²,,Nominal value. Filament Count: 24 000.,Fibers_material_data.csv
|
| 261 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strength,2550,MPa,260 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 262 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Modulus,135,GPa,14.0 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 263 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strain,1.7,%,1.70%,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 264 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Compressive Strength,1470,MPa,150 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 265 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Flexural Modulus,120,GPa,12.3 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 266 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,ILSS,69,MPa,7 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 267 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of fiber,Basfiber®,,Basfiber,,,Fibers_material_data.csv
|
| 268 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Monofilament diameter,From 10 to 22,µm,Range 10 to 22 micrometers,,,Fibers_material_data.csv
|
| 269 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Linear density,270-4800,tex,Range 270 to 4800 tex,,,Fibers_material_data.csv
|
| 270 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of sizing,"11, 12, 13, 15 and 42.",,Sizing types available,,,Fibers_material_data.csv
|
| 271 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Sizing content,≥0.4,% wt.,Greater than or equal to 0.4 weight percent,,Minimum content,Fibers_material_data.csv
|
| 272 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Resin compatibility,"Polyester, vinyl ester, epoxy polyurethane",,"Compatible with Polyester, vinyl ester, epoxy polyurethane resins",,,Fibers_material_data.csv
|
| 273 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Moisture content,<0.1,% wt.,Less than 0.1 weight percent,,,Fibers_material_data.csv
|
| 274 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Melting Range,1460-1500,°C,1460 to 1500 degrees Celsius,,,Fibers_material_data.csv
|
| 275 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Crystallization temperature,1250,°C,1250 degrees Celsius,,,Fibers_material_data.csv
|
| 276 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Sintering Temperature,1050,°C,1050 degrees Celsius,,,Fibers_material_data.csv
|
| 277 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Thermal Conductivity,0.031-0.038,W/(m·K),Range 0.031 to 0.038 W/(m·K),,,Fibers_material_data.csv
|
| 278 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,E-modulus,2900-3200,GPa,Range 2900 to 3200 GPa,ASTM D2343,"Applies to RDR-10.90, RDR-11.110, RDR-13.150, RDR-17.250, RDR-17.600, RDR-19.600 series.",Fibers_material_data.csv
|
| 279 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,90-94,MPa,Range 90 to 94 MPa,ASTM D2343,For RDR-10.90,Fibers_material_data.csv
|
| 280 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,89-93,MPa,Range 89 to 93 MPa,ASTM D2343,For RDR-11.110,Fibers_material_data.csv
|
| 281 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,88-92,MPa,Range 88 to 92 MPa,ASTM D2343,For RDR-13.150,Fibers_material_data.csv
|
| 282 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,86-90,MPa,Range 86 to 90 MPa,ASTM D2343,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data.csv
|
| 283 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥750,mN/tex,Greater than or equal to 750 mN/tex,ASTM D3822,"For RDR-10.90, RDR-11.110",Fibers_material_data.csv
|
| 284 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D3822,For RDR-13.150,Fibers_material_data.csv
|
| 285 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D3822,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data.csv
|
| 286 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D-3822,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 287 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D-3822,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 288 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 600,mN/tex,Greater than or equal to 600 mN/tex,ASTM D-3822,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 289 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3200,MPa,3200 MPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 290 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3100,MPa,3100 MPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 291 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),2900,MPa,2900 MPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 292 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),90-94,GPa,Range 90 to 94 GPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 293 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),88-92,GPa,Range 88 to 92 GPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 294 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),86-90,GPa,Range 86 to 90 GPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 295 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4300,MPa,4300 MPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 296 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4200,MPa,4200 MPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 297 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4000,MPa,4000 MPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 298 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),95,GPa,95 GPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 299 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),93,GPa,93 GPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 300 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),92,GPa,92 GPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 301 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.2,%,0.2% weight loss,3-hour boiling in water,,Fibers_material_data.csv
|
| 302 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.35,%,0.35% weight loss,3-hour boiling in saturated cement solution (pH 12.9),,Fibers_material_data.csv
|
| 303 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),7-Feb,%,2% to 7% weight loss,3-hour boiling in 2N solution HCl (hydrochloric acid),,Fibers_material_data.csv
|
| 304 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6,%,6% weight loss,3-hour boiling in 2N solution NaOH (sodium hydroxide),,Fibers_material_data.csv
|
| 305 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6-Feb,%,2% to 6% weight loss,30 minutes and in 180 minutes in H2SO4 (sulphuric acid),,Fibers_material_data.csv
|
| 306 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Sizing Content,"0,4-0,8",% WEIGHT,Range 0.4 to 0.8 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data.csv
|
| 307 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Moisture Content,"<0,1",% WEIGHT,Less than 0.1 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data.csv
|
| 308 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From -260 up to +400,°C,-260 to +400 degrees Celsius,Permanent thermal load duration,,Fibers_material_data.csv
|
| 309 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 1),Up to +200,°C,Up to +200 degrees Celsius,,Amorphous fiber with sizing on the fiber surface,Fibers_material_data.csv
|
| 310 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 2),From +200 up to +350,°C,+200 to +350 degrees Celsius,,"Burning of sizing (10-15 minutes), amorphous fiber",Fibers_material_data.csv
|
| 311 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 3),From +350 up to +400,°C,+350 to +400 degrees Celsius,,Amorphous fiber without sizing on the fiber surface,Fibers_material_data.csv
|
| 312 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +400 up to +850,°C,+400 to +850 degrees Celsius,Short term (few minutes),Short term (few minutes). Also Stage 4: transition of FeO into Fe2O3 and beginning of crystallization,Fibers_material_data.csv
|
| 313 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +850 up to +1250,°C,+850 to +1250 degrees Celsius,Short term (few seconds),,Fibers_material_data.csv
|
| 314 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 5),From +850 up to +1050,°C,+850 to +1050 degrees Celsius,,"All the Fe2O3 is in crystal form. Material is extremely brittle, mechanical properties are extremely poor, but works as thermal insulation.",Fibers_material_data.csv
|
| 315 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Sintering Temperature (Stage 6),From +1050 up to +1250,°C,+1050 to +1250 degrees Celsius,,Sintering temperature,Fibers_material_data.csv
|
| 316 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,100,%,100% retention,+20°C,Baseline measurement,Fibers_material_data.csv
|
| 317 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,95,%,95% retention,+200°C,,Fibers_material_data.csv
|
| 318 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,80,%,80% retention,+400°C,,Fibers_material_data.csv
|
| 319 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Product Range,Deniers Range,50-5400,denier,50 to 5400 denier,,Range of available deniers for UHMWPE fibers.,Fibers_material_data.csv
|
| 320 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Breaking Tenacity,28,g/d,28.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 321 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 322 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Elongation @ Break,3.6,%,3.6 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 323 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Tensile Modulus,850,g/d,850 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 324 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 325 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 326 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 327 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 328 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 329 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Breaking Tenacity,38,g/d,38.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 330 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 331 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Elongation @ Break,3.1,%,3.1 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 332 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Tensile Modulus,1250,g/d,1250 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 333 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 334 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 335 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 336 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 337 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 338 |
+
SE2350 single-end Type 30 roving,SE2350,STRAND TENSILES,Strength,2240,MPA,325,Amine/DER 331 Epoxy Resin; ASTM D 2343,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 339 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Dry Shear Strength,64.4,MPA,9340,Amine/DER 331 Epoxy Resin; ASTM D 2344,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 340 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Shear Strength Retention,95,%,95%,Amine/DER 331 Epoxy Resin; ASTM D 2344; 72 HR BOIL,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 341 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Yield,250,,250,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data.csv
|
| 342 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Tex,2000,Tex,2000,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data.csv
|
| 343 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Typical fiber property,Fibers_material_data_.csv
|
| 344 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filler Content,62.0,%,62.0 %,,Fiber Volume of Typical epoxy composite,Fibers_material_data_.csv
|
| 345 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filament Diameter,6.9,µm,6.9 µm,,,Fibers_material_data_.csv
|
| 346 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",2140,MPa,310000 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 347 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",4470,MPa,648000 psi,,Typical fiber property,Fibers_material_data_.csv
|
| 348 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Elongation at Break,1.9,%,1.9 %,,Calculated from tow test data,Fibers_material_data_.csv
|
| 349 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,136,GPa,19700 ksi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 350 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,221,GPa,32100 ksi,,Typical fiber property; Chord 6000-1000,Fibers_material_data_.csv
|
| 351 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Strength,1725,MPa,250200 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 352 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Modulus,128,GPa,18600 ksi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 353 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Shear Strength,124,MPa,18000 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 354 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Component Elements Properties,"Carbon, C",94,%,94 %,,Fiber,Fibers_material_data_.csv
|
| 355 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,1.25,m/g,,,12K,Fibers_material_data_.csv
|
| 356 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,2.5,m/g,,,6K,Fibers_material_data_.csv
|
| 357 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,5,m/g,,,3K,Fibers_material_data_.csv
|
| 358 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Filament Shape,Round,,,,,Fibers_material_data_.csv
|
| 359 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.11,mm2,,,3K,Fibers_material_data_.csv
|
| 360 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.22,mm2,,,6K,Fibers_material_data_.csv
|
| 361 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.44,mm2,,,12K,Fibers_material_data_.csv
|
| 362 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Twist,,,,,,Fibers_material_data_.csv
|
| 363 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.2,g/m,,,3K,Fibers_material_data_.csv
|
| 364 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.4,g/m,,,6K,Fibers_material_data_.csv
|
| 365 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.8,g/m,,,12K,Fibers_material_data_.csv
|
| 366 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Specific Gravity,1.24,g/cc,1.24 g/cc,,ASTM D792,Fibers_material_data_.csv
|
| 367 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Melt Density,1.08,g/cc,0.0390 lb/in³,,ASTM D1238,Fibers_material_data_.csv
|
| 368 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Viscosity Measurement,3.3,,3.3,@Temperature 230 °C,Relative Viscosity; CD Internal Viscotek Method (English test condition: @Temperature 446 °F),Fibers_material_data_.csv
|
| 369 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Elongation at Break,10 - 70,%,10 - 70 %,,Fiber; ASTM D2256/ASTM D3822,Fibers_material_data_.csv
|
| 370 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Tenacity,0.221 - 0.353,N/tex,2.50 - 4.00 g/denier,,ASTM D2256/ASTM D3822,Fibers_material_data_.csv
|
| 371 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Melting Point,145 - 155,°C,293 - 311 °F,,ASTM D3418,Fibers_material_data_.csv
|
| 372 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,"Glass Transition Temp, Tg",55.0 - 65.0,°C,131 - 149 °F,,ASTM D3417,Fibers_material_data_.csv
|
| 373 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Shrinkage,<= 8.0,%,<= 8.0 %,"@Temperature 120 °C, Time 600 sec","Hot Air; ASTM D2102 (English test condition: @Temperature 248 °F, Time 0.167 hour)",Fibers_material_data_.csv
|
| 374 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Dew Point,-35.0,°C,-31.0 °F,,,Fibers_material_data_.csv
|
| 375 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Drying Air Flow Rate,>= 14.2,l/min,>= 0.500 ft³/min (CFM),,,Fibers_material_data_.csv
|
| 376 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Density,1.79,g/cc,0.0647 lb/in³,,ISO 10119,Fibers_material_data_.csv
|
| 377 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Fiber Count,16000,dtex,14400 denier,,ISO 1889,Fibers_material_data_.csv
|
| 378 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Strength,4900,MPa,711000 psi,,ISO 10618,Fibers_material_data_.csv
|
| 379 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Elongation at Break,2,%,2.0 %,,ISO 10618,Fibers_material_data_.csv
|
| 380 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Modulus,250,GPa,36300 ksi,,ISO 10618,Fibers_material_data_.csv
|
| 381 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Density,3.08,g/cc,0.111 lb/in³,,,Fibers_material_data_.csv
|
| 382 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Thickness,142,microns,5.59 mil,,Diameter,Fibers_material_data_.csv
|
| 383 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,"Tensile Strength, Ultimate",5900,MPa,856000 psi,,,Fibers_material_data_.csv
|
| 384 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,Modulus of Elasticity,415,GPa,60200 ksi,,,Fibers_material_data_.csv
|
| 385 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Thermal Properties,"CTE, linear",4.10,µm/m-°C,2.28 µin/in-°F,@Temperature 20.0 °C @Temperature 68.0 °F,,Fibers_material_data_.csv
|
| 386 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Descriptive Properties,Cross Section,Round,,,,,Fibers_material_data_.csv
|
| 387 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Bulk Density,0.220,g/cc,0.00795 lb/in³,,,Fibers_material_data_.csv
|
| 388 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Fiber Density,Fibers_material_data_.csv
|
| 389 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Filament Diameter,7.5,µm,7.5 µm,,,Fibers_material_data_.csv
|
| 390 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Tensile Strength at Break,3600,MPa,522000 psi,,ASTM D3379-104,Fibers_material_data_.csv
|
| 391 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Elongation at Break,1.4-1.8,%,1.4-1.8 %,,ASTM D3379-75,Fibers_material_data_.csv
|
| 392 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Modulus of Elasticity,225,GPa,32600 ksi,,ASTM D3379-104,Fibers_material_data_.csv
|
| 393 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Electrical Properties,Volume Resistivity,0.0016,ohm-cm,0.0016 ohm-cm,,,Fibers_material_data_.csv
|
| 394 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Carbon Content,>95,wt %,,,,Fibers_material_data_.csv
|
| 395 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Mean Fiber Length,0.155,mm,,,Milled,Fibers_material_data_.csv
|
| 396 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Sizing Content,1.5 - 6.5,% by weight,,,,Fibers_material_data_.csv
|
src/data/data/Composites_material_data.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/data/data/Convertxl_CSV.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
import os
|
| 3 |
+
|
| 4 |
+
excel_path = r"C:\Users\varam\Documents\code\5_2_database\data\Polymers_material_data_.xlsx"
|
| 5 |
+
output_dir = "csv_out"
|
| 6 |
+
|
| 7 |
+
os.makedirs(output_dir, exist_ok=True)
|
| 8 |
+
|
| 9 |
+
xls = pd.ExcelFile(excel_path)
|
| 10 |
+
|
| 11 |
+
for sheet_name in xls.sheet_names:
|
| 12 |
+
df = pd.read_excel(xls, sheet_name=sheet_name)
|
| 13 |
+
csv_path = os.path.join(output_dir, f"{sheet_name}.csv")
|
| 14 |
+
df.to_csv(csv_path, index=False)
|
| 15 |
+
|
| 16 |
+
print("All sheets converted to CSV")
|
src/data/data/Fibers_material_data.csv
ADDED
|
@@ -0,0 +1,396 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
material_name,material_abbreviation,section,property_name,value,unit,english,test_condition,comments,source_file
|
| 2 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 3 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 4 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 5 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 6 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 7 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 8 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 9 |
+
Nylon 6 Fiber,PA6,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 10 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 11 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 12 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 13 |
+
Nylon 6 Fiber,PA6,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 14 |
+
Nylon 6 Fiber,PA6,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 15 |
+
Nylon 6 Fiber,PA6,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 16 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,Fibers_material_data.csv
|
| 17 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,Fibers_material_data.csv
|
| 18 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,Fibers_material_data.csv
|
| 19 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,Fibers_material_data.csv
|
| 20 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,Fibers_material_data.csv
|
| 21 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,Fibers_material_data.csv
|
| 22 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,Fibers_material_data.csv
|
| 23 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,Fibers_material_data.csv
|
| 24 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,Fibers_material_data.csv
|
| 25 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,Fibers_material_data.csv
|
| 26 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,Fibers_material_data.csv
|
| 27 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,Fibers_material_data.csv
|
| 28 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,Fibers_material_data.csv
|
| 29 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,Fibers_material_data.csv
|
| 30 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,Fibers_material_data.csv
|
| 31 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,Fibers_material_data.csv
|
| 32 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,Fibers_material_data.csv
|
| 33 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,Fibers_material_data.csv
|
| 34 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,Fibers_material_data.csv
|
| 35 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,Fibers_material_data.csv
|
| 36 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,Fibers_material_data.csv
|
| 37 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,Fibers_material_data.csv
|
| 38 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,Fibers_material_data.csv
|
| 39 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,Fibers_material_data.csv
|
| 40 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,Fibers_material_data.csv
|
| 41 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,Fibers_material_data.csv
|
| 42 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,Fibers_material_data.csv
|
| 43 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,Fibers_material_data.csv
|
| 44 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,Fibers_material_data.csv
|
| 45 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,Fibers_material_data.csv
|
| 46 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,Fibers_material_data.csv
|
| 47 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,Fibers_material_data.csv
|
| 48 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,Fibers_material_data.csv
|
| 49 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,Fibers_material_data.csv
|
| 50 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,Fibers_material_data.csv
|
| 51 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,Fibers_material_data.csv
|
| 52 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 53 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,Fibers_material_data.csv
|
| 54 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,Fibers_material_data.csv
|
| 55 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,Fibers_material_data.csv
|
| 56 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05e+12,ohm-cm,9.05e+12 ohm-cm,,,Fibers_material_data.csv
|
| 57 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,Fibers_material_data.csv
|
| 58 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 59 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,Fibers_material_data.csv
|
| 60 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 61 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",Fibers_material_data.csv
|
| 62 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 63 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 64 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 65 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,Fibers_material_data.csv
|
| 66 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,Fibers_material_data.csv
|
| 67 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",Fibers_material_data.csv
|
| 68 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,Fibers_material_data.csv
|
| 69 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,Fibers_material_data.csv
|
| 70 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,Fibers_material_data.csv
|
| 71 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,Fibers_material_data.csv
|
| 72 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,Fibers_material_data.csv
|
| 73 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,Fibers_material_data.csv
|
| 74 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,Fibers_material_data.csv
|
| 75 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 76 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,Fibers_material_data.csv
|
| 77 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,Fibers_material_data.csv
|
| 78 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,Fibers_material_data.csv
|
| 79 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,Fibers_material_data.csv
|
| 80 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 81 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 82 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,Fibers_material_data.csv
|
| 83 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,Fibers_material_data.csv
|
| 84 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,Fibers_material_data.csv
|
| 85 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,Fibers_material_data.csv
|
| 86 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,Fibers_material_data.csv
|
| 87 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 88 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,Fibers_material_data.csv
|
| 89 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,Fibers_material_data.csv
|
| 90 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 91 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,Fibers_material_data.csv
|
| 92 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 93 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,Fibers_material_data.csv
|
| 94 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,Fibers_material_data.csv
|
| 95 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02e+12,ohm-cm,4.02e+12 ohm-cm,,,Fibers_material_data.csv
|
| 96 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 97 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 98 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,Fibers_material_data.csv
|
| 99 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 100 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 101 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 102 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,Fibers_material_data.csv
|
| 103 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 104 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 105 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 106 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,Fibers_material_data.csv
|
| 107 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,Fibers_material_data.csv
|
| 108 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,Fibers_material_data.csv
|
| 109 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,Fibers_material_data.csv
|
| 110 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,Fibers_material_data.csv
|
| 111 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,Fibers_material_data.csv
|
| 112 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,Fibers_material_data.csv
|
| 113 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,Fibers_material_data.csv
|
| 114 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,Fibers_material_data.csv
|
| 115 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,Fibers_material_data.csv
|
| 116 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,Fibers_material_data.csv
|
| 117 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,Fibers_material_data.csv
|
| 118 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,Fibers_material_data.csv
|
| 119 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,Fibers_material_data.csv
|
| 120 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,Fibers_material_data.csv
|
| 121 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 122 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 123 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,Fibers_material_data.csv
|
| 124 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,Fibers_material_data.csv
|
| 125 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 126 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 127 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 128 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 129 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 130 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 131 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 132 |
+
Nylon 6 Fiber,PA6-F,Physical Properties,Density,1.13 - 1.14,g/cc,0.0408 - 0.0412 lb/in³,,Average value: 1.14 g/cc Grade Count:10,Fibers_material_data.csv
|
| 133 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,"Tensile Strength, Ultimate",558 - 607,MPa,81000 - 88000 psi,,Average value: 578 MPa Grade Count:5,Fibers_material_data.csv
|
| 134 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Break,15.0 - 300,%,15.0 - 300 %,,Average value: 42.3 % Grade Count:31,Fibers_material_data.csv
|
| 135 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Elongation at Yield,3.50 - 12.0,%,3.50 - 12.0 %,,Average value: 7.81 % Grade Count:8,Fibers_material_data.csv
|
| 136 |
+
Nylon 6 Fiber,PA6-F,Mechanical Properties,Tenacity,0.265 - 2.56,N/tex,3.00 - 29.0 g/denier,,Average value: 0.723 N/tex Grade Count:25,Fibers_material_data.csv
|
| 137 |
+
Nylon 6 Fiber,PA6-F,Electrical Properties,Electrical Resistivity,4000 - 300000,ohm-cm,4000 - 300000 ohm-cm,,Average value: 176000 ohm-cm Grade Count:8,Fibers_material_data.csv
|
| 138 |
+
Nylon 6 Fiber,PA6-F,Thermal Properties,Melting Point,110 - 220,°C,230 - 428 °F,,Average value: 214 °C Grade Count:19,Fibers_material_data.csv
|
| 139 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Density,0.886 - 1.14,g/cc,0.0320 - 0.0412 lb/in³,,Average value: 0.905 g/cc Grade Count:117,Fibers_material_data.csv
|
| 140 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Water Absorption,0.01,%,0.01%,,Average value: 0.0100 % Grade Count:3,Fibers_material_data.csv
|
| 141 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Environmental Stress Crack Resistance,>= 500,hour,>= 500 hour,,Average value: 500 hour Grade Count:2,Fibers_material_data.csv
|
| 142 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Linear Mold Shrinkage,0.0100 - 0.0250,cm/cm,0.0100 - 0.0250 in/in,@Temperature 50.0 - 50.0 °C,Average value: 0.0175 cm/cm Grade Count:4,Fibers_material_data.csv
|
| 143 |
+
"Polypropylene, Fiber Grade",PP-F,Physical Properties,Melt Flow,0.300 - 1800,g/10 min,0.300 - 1800 g/10 min,,Average value: 97.2 g/10 min Grade Count:138,Fibers_material_data.csv
|
| 144 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Rockwell R",65.0 - 112,,65.0 - 112,,Average value: 98.3 Grade Count:61,Fibers_material_data.csv
|
| 145 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Hardness, Shore D",70.0 - 76.0,,70.0 - 76.0,,Average value: 73.4 Grade Count:20,Fibers_material_data.csv
|
| 146 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Ultimate",17.8 - 317,MPa,2580 - 46000 psi,,Average value: 113 MPa Grade Count:23,Fibers_material_data.csv
|
| 147 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Tensile Strength, Yield",21.0 - 97.0,MPa,3050 - 14100 psi,,Average value: 35.0 MPa Grade Count:103,Fibers_material_data.csv
|
| 148 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Break,15.0 - 720,%,15.0 - 720 %,,Average value: 278 % Grade Count:38,Fibers_material_data.csv
|
| 149 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Elongation at Yield,6.00 - 203,%,6.00 - 203 %,,Average value: 17.1 % Grade Count:84,Fibers_material_data.csv
|
| 150 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Modulus of Elasticity,0.650 - 1.99,GPa,94.3 - 289 ksi,,Average value: 1.46 GPa Grade Count:23,Fibers_material_data.csv
|
| 151 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Tenacity,0.168 - 0.441,N/tex,1.90 - 5.00 g/denier,,Average value: 0.266 N/tex Grade Count:16,Fibers_material_data.csv
|
| 152 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Yield Strength,22.0 - 135,MPa,3190 - 19600 psi,,Average value: 53.0 MPa Grade Count:5,Fibers_material_data.csv
|
| 153 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,Flexural Modulus,0.827 - 7.40,GPa,120 - 1070 ksi,,Average value: 1.54 GPa Grade Count:112,Fibers_material_data.csv
|
| 154 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.140 - 0.490,J/cm,0.262 - 0.919 ft-lb/in,,Average value: 0.288 J/cm Grade Count:74,Fibers_material_data.csv
|
| 155 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched",0.166713 - 0.274586,J/cm,0.312322 - 0.514412 ft-lb/in,@Temperature -20.0 - 0.000 °C,Average value: 0.216 J/cm Grade Count:2,Fibers_material_data.csv
|
| 156 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Unnotched",0.186 - NB,J/cm,0.349 ft-lb/in - NB,,Average value: 3.08 J/cm Grade Count:13,Fibers_material_data.csv
|
| 157 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",2.00 - 10.0,kJ/m²,0.952 - 4.76 ft-lb/in²,,Average value: 4.15 kJ/m² Grade Count:20,Fibers_material_data.csv
|
| 158 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Izod Impact, Notched (ISO)",8.00 - 8.00,kJ/m²,3.81 - 3.81 ft-lb/in²,@Temperature -30.0 - 30.0 °C,Average value: 8.00 kJ/m² Grade Count:1,Fibers_material_data.csv
|
| 159 |
+
"Polypropylene, Fiber Grade",PP-F,Mechanical Properties,"Charpy Impact, Notched",0.400 - 0.850,J/cm²,1.90 - 4.05 ft-lb/in²,,Average value: 0.543 J/cm² Grade Count:7,Fibers_material_data.csv
|
| 160 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Melting Point,146 - 165 °C,°C,295 - 329 °F,,Average value: 162 °C Grade Count:30,Fibers_material_data.csv
|
| 161 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,60.0 - 129 °C,°C,140 - 264 °F,at 0.46 MPa (66 psi),Average value: 101 °C Grade Count:82,Fibers_material_data.csv
|
| 162 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Deflection Temperature,52.0 - 150 °C,°C,126 - 302 °F,at 1.8 MPa (264 psi),Average value: 69.3 °C Grade Count:19,Fibers_material_data.csv
|
| 163 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Vicat Softening Point,78.0 - 155 °C,°C,172 - 311 °F,,Average value: 146 °C Grade Count:39,Fibers_material_data.csv
|
| 164 |
+
"Polypropylene, Fiber Grade",PP-F,Thermal Properties,Heat Distortion Temperature,95.0 - 119 °C,°C,203 - 246 °F,,Average value: 108 °C Grade Count:6,Fibers_material_data.csv
|
| 165 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Haze,50.0 - 79.7,%,50.0 - 79.7 %,,Average value: 63.0 % Grade Count:6,Fibers_material_data.csv
|
| 166 |
+
"Polypropylene, Fiber Grade",PP-F,Optical Properties,Gloss,65.0 - 95.0,%,65.0 - 95.0 %,,Average value: 86.2 % Grade Count:6,Fibers_material_data.csv
|
| 167 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Processing Temperature,190 - 274 °C,°C,374 - 525 °F,,Average value: 234 °C Grade Count:8,Fibers_material_data.csv
|
| 168 |
+
"Polypropylene, Fiber Grade",PP-F,Processing Properties,Melt Temperature,204 - 288 °C,°C,399 - 550 °F,,Average value: 232 °C Grade Count:10,Fibers_material_data.csv
|
| 169 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Bulk Density,2.48,g/cc,0.0896 lb/in³,,,Fibers_material_data.csv
|
| 170 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Density,2.46,g/cc,0.0889 lb/in³,,,Fibers_material_data.csv
|
| 171 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Water Absorption,0,%,0.00%,,,Fibers_material_data.csv
|
| 172 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Loss On Ignition,0.10 - 1.4,%,0.10 - 1.4%,,Varies according to size type,Fibers_material_data.csv
|
| 173 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Physical Properties,Filament Diameter,5.0 - 25,µm,5.0 - 25 µm,,,Fibers_material_data.csv
|
| 174 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4445,MPa,644700 psi,@Temperature 371 °C,,Fibers_material_data.csv
|
| 175 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,"Tensile Strength, Ultimate",4890,MPa,709000 psi,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 176 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Elongation at Break,5.7,%,5.70%,,in 50 mm,Fibers_material_data.csv
|
| 177 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Modulus of Elasticity,86.9,GPa,12600 ksi,,,Fibers_material_data.csv
|
| 178 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Mechanical Properties,Poissons Ratio,0.22,,0.22,,,Fibers_material_data.csv
|
| 179 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Electrical Resistivity,9.05E+12,ohm-cm,9.05e+12 ohm-cm,,,Fibers_material_data.csv
|
| 180 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.2,,5.2,@Frequency 1e+10 Hz,,Fibers_material_data.csv
|
| 181 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Constant,5.3,,5.3,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 182 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dielectric Strength,18,kV/mm,457 kV/in,,,Fibers_material_data.csv
|
| 183 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Electrical Properties,Dissipation Factor,0.002,,0.002,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 184 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"CTE, linear",1.6,µm/m-°C,0.889 µin/in-°F,@Temperature -30.0 - 250 °C,"average, isotropic",Fibers_material_data.csv
|
| 185 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.737,J/g-°C,0.176 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 186 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Specific Heat Capacity,0.935,J/g-°C,0.223 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 187 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Thermal Conductivity,1.10 - 1.40,W/m-K,7.63 - 9.72 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 188 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Melting Point,1466,°C,2671 °F,,Liquidus,Fibers_material_data.csv
|
| 189 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Liquidus,1466,°C,2671 °F,,,Fibers_material_data.csv
|
| 190 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Air",875,°C,1610 °F,,"Well above Tg, due to reversible phase separation",Fibers_material_data.csv
|
| 191 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Maximum Service Temperature, Inert",875,°C,1610 °F,,,Fibers_material_data.csv
|
| 192 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,"Transformation Temperature, Tg",845,°C,1550 °F,,,Fibers_material_data.csv
|
| 193 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Thermal Properties,Softening Point,1056,°C,1933 °F,,,Fibers_material_data.csv
|
| 194 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Optical Properties,Refractive Index,1.521,,1.521,,,Fibers_material_data.csv
|
| 195 |
+
AGY ZenTron® S-2 Generic S-Glass Fiber,S2GF-AGY,Descriptive Properties,Color,Clear,,,,,Fibers_material_data.csv
|
| 196 |
+
"A-Glass Fiber, Generic",AGF,Physical Properties,Density,2.44,g/cc,0.0882 lb/in³,,,Fibers_material_data.csv
|
| 197 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,"Tensile Strength, Ultimate",3310,MPa,480000 psi,,,Fibers_material_data.csv
|
| 198 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 199 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Modulus of Elasticity,68.9,GPa,9990 ksi,,,Fibers_material_data.csv
|
| 200 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Poissons Ratio,0.183,,0.183,,,Fibers_material_data.csv
|
| 201 |
+
"A-Glass Fiber, Generic",AGF,Mechanical Properties,Shear Modulus,29.1,GPa,4220 ksi,,Calculated,Fibers_material_data.csv
|
| 202 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Electrical Resistivity,100000000,ohm-cm,1.00e+8 ohm-cm,,,Fibers_material_data.csv
|
| 203 |
+
"A-Glass Fiber, Generic",AGF,Electrical Properties,Dielectric Constant,6.2,,6.2,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 204 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,"CTE, linear",9,µm/m-°C,5.00 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 205 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Specific Heat Capacity,0.796,J/g-°C,0.190 BTU/b-°F,,,Fibers_material_data.csv
|
| 206 |
+
"A-Glass Fiber, Generic",AGF,Thermal Properties,Softening Point,727,°C,1340 °F,,,Fibers_material_data.csv
|
| 207 |
+
"A-Glass Fiber, Generic",AGF,Optical Properties,Refractive Index,1.538,,1.538,,,Fibers_material_data.csv
|
| 208 |
+
"E-Glass Fiber, Generic",EGF,Physical Properties,Density,2.54 - 2.60,g/cc,0.0918 - 0.0939 lb/in³,,,Fibers_material_data.csv
|
| 209 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",521,MPa,75500 psi,@Temperature -190 °C,,Fibers_material_data.csv
|
| 210 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",1725,MPa,250200 psi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 211 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",2620,MPa,380000 psi,@Temperature 370 °C,,Fibers_material_data.csv
|
| 212 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,"Tensile Strength, Ultimate",3450-3790,MPa,500000 - 550000 psi,@Temperature 22.0 °C,Virgin strength,Fibers_material_data.csv
|
| 213 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Elongation at Break,4.8,%,4.80%,,,Fibers_material_data.csv
|
| 214 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.4,GPa,10500 ksi,,,Fibers_material_data.csv
|
| 215 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Modulus of Elasticity,72.3,GPa,10500 ksi,@Temperature 540 °C,,Fibers_material_data.csv
|
| 216 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Poissons Ratio,0.2,,0.2,,Calculated,Fibers_material_data.csv
|
| 217 |
+
"E-Glass Fiber, Generic",EGF,Mechanical Properties,Shear Modulus,30,GPa,4350 ksi,,,Fibers_material_data.csv
|
| 218 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Electrical Resistivity,4.02E+12,ohm-cm,4.02e+12 ohm-cm,,,Fibers_material_data.csv
|
| 219 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,5.9 - 6.4,,5.9 - 6.4,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 220 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Constant,6.3 - 6.6,,6.3 - 6.6,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 221 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dielectric Strength,10.3,kV/mm,262 kV/in,,,Fibers_material_data.csv
|
| 222 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0025,,0.0025,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 223 |
+
"E-Glass Fiber, Generic",EGF,Electrical Properties,Dissipation Factor,0.0034,,0.0034,@Frequency 60 Hz,,Fibers_material_data.csv
|
| 224 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5,µm/m-°C,2.78 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 225 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,"CTE, linear",5.4,µm/m-°C,3.00 µin/in-°F,@Temperature -30.0 - 250 °C,,Fibers_material_data.csv
|
| 226 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,0.81,J/g-°C,0.194 BTU/lb-°F,@Temperature 23.0 °C,,Fibers_material_data.csv
|
| 227 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Specific Heat Capacity,1.03,J/g-°C,0.246 BTU/lb-°F,@Temperature 200 °C,,Fibers_material_data.csv
|
| 228 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Thermal Conductivity,1.3,W/m-K,9.02 BTU-in/hr-ft²-°F,,,Fibers_material_data.csv
|
| 229 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Melting Point,<= 1725,°C,<= 3137 °F,,,Fibers_material_data.csv
|
| 230 |
+
"E-Glass Fiber, Generic",EGF,Thermal Properties,Softening Point,840.6,°C,1545 °F,,,Fibers_material_data.csv
|
| 231 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.558,,1.558,,,Fibers_material_data.csv
|
| 232 |
+
"E-Glass Fiber, Generic",EGF,Optical Properties,Refractive Index,1.562,,1.562,,bulk annealed,Fibers_material_data.csv
|
| 233 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,A1203,15.2,%,15.20%,,,Fibers_material_data.csv
|
| 234 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,BaO,8,%,8.00%,,,Fibers_material_data.csv
|
| 235 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,CaO,17.2,%,17.20%,,,Fibers_material_data.csv
|
| 236 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,MgO,4.7,%,4.70%,,,Fibers_material_data.csv
|
| 237 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,NaO2,0.6,%,0.60%,,,Fibers_material_data.csv
|
| 238 |
+
"E-Glass Fiber, Generic",EGF,Component Elements Properties,SiO2,54.3,%,54.30%,,,Fibers_material_data.csv
|
| 239 |
+
"E-Glass Fiber, Generic",EGF,Descriptive Properties,Velocity of sound,5330,m/s,,,,Fibers_material_data.csv
|
| 240 |
+
"D-Glass Fiber, Generic",DGF,Physical Properties,Density,2.11,g/cc,0.0762 lb/in³,,,Fibers_material_data.csv
|
| 241 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,"Tensile Strength, Ultimate",2415,MPa,350300 psi,,,Fibers_material_data.csv
|
| 242 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Elongation at Break,4.6,%,4.60%,,,Fibers_material_data.csv
|
| 243 |
+
"D-Glass Fiber, Generic",DGF,Mechanical Properties,Modulus of Elasticity,51.7,GPa,7500 ksi,,,Fibers_material_data.csv
|
| 244 |
+
"D-Glass Fiber, Generic",DGF,Electrical Properties,Dielectric Constant,3.8,,3.8,@Frequency 1e+6 Hz,,Fibers_material_data.csv
|
| 245 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,"CTE, linear",2.5,µm/m-°C,1.39 µin/in-°F,@Temperature 20.0 °C,,Fibers_material_data.csv
|
| 246 |
+
"D-Glass Fiber, Generic",DGF,Thermal Properties,Specific Heat Capacity,0.733,J/g-°C,0.175 BTU/lb-°F,,,Fibers_material_data.csv
|
| 247 |
+
"D-Glass Fiber, Generic",DGF,Optical Properties,Refractive Index,1.465,,1.465,,,Fibers_material_data.csv
|
| 248 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Strength,4900,MPa,500 kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 249 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Tensile Modulus,230,GPa,23.5 10³kgf/mm²,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 250 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Elongation,2.1,%,2.10%,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-002.,Fibers_material_data.csv
|
| 251 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Density,1.8,g/cm³,1.80 g/cm³,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Method: TY-QA-003.,Fibers_material_data.csv
|
| 252 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,800,g/1000m,800 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 12 000. Method: TY-QA-004.,Fibers_material_data.csv
|
| 253 |
+
Carbon Fiber,T700S,FIBER PROPERTIES,Yield,1650,g/1000m,1650 g/1000m,,Lot properties are reported as average values of a test set per bobbin sampled. The stated values are typical values. Filament Count: 24 000. Method: TY-QA-004.,Fibers_material_data.csv
|
| 254 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Specific Heat,0.18,Cal/g.°C,0.18 Cal/g.°C,,Nominal value.,Fibers_material_data.csv
|
| 255 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Electric Resistivity,1.6,x 10⁻³Ω.cm,1.6 x 10⁻³Ω.cm,,Nominal value.,Fibers_material_data.csv
|
| 256 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,CTE,-0.38,α10⁻⁶/°C,-0.38 α10⁻⁶/°C,,Nominal value.,Fibers_material_data.csv
|
| 257 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Thermal Conductivity,0.0224,Cal/cm.s.°C,0.0224 Cal/cm.s.°C,,Nominal value.,Fibers_material_data.csv
|
| 258 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Filament Diameter,7,µm,7 µm,,Nominal value.,Fibers_material_data.csv
|
| 259 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.44,mm²,0.44 mm²,,Nominal value. Filament Count: 12 000.,Fibers_material_data.csv
|
| 260 |
+
Carbon Fiber,T700S,FUNCTIONAL PROPERTIES,Cross Sectional Area,0.92,mm²,0.92 mm²,,Nominal value. Filament Count: 24 000.,Fibers_material_data.csv
|
| 261 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strength,2550,MPa,260 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 262 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Modulus,135,GPa,14.0 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 263 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Tensile Strain,1.7,%,1.70%,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 264 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Compressive Strength,1470,MPa,150 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 265 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,Flexural Modulus,120,GPa,12.3 10³kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 266 |
+
Carbon Fiber,T700S,COMPOSITE PROPERTIES,ILSS,69,MPa,7 kgf/mm²,Toray 2500 - 120°C resin system. Measured temperature: RT. Normalized to 60% fiber volume.,Nominal value.,Fibers_material_data.csv
|
| 267 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of fiber,Basfiber®,,Basfiber,,,Fibers_material_data.csv
|
| 268 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Monofilament diameter,From 10 to 22,µm,Range 10 to 22 micrometers,,,Fibers_material_data.csv
|
| 269 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Linear density,270-4800,tex,Range 270 to 4800 tex,,,Fibers_material_data.csv
|
| 270 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Type of sizing,"11, 12, 13, 15 and 42.",,Sizing types available,,,Fibers_material_data.csv
|
| 271 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Sizing content,≥0.4,% wt.,Greater than or equal to 0.4 weight percent,,Minimum content,Fibers_material_data.csv
|
| 272 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Resin compatibility,"Polyester, vinyl ester, epoxy polyurethane",,"Compatible with Polyester, vinyl ester, epoxy polyurethane resins",,,Fibers_material_data.csv
|
| 273 |
+
BASFIBER® ROVING,EGF-R-BASF,PROPERTY,Moisture content,<0.1,% wt.,Less than 0.1 weight percent,,,Fibers_material_data.csv
|
| 274 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Melting Range,1460-1500,°C,1460 to 1500 degrees Celsius,,,Fibers_material_data.csv
|
| 275 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Crystallization temperature,1250,°C,1250 degrees Celsius,,,Fibers_material_data.csv
|
| 276 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Sintering Temperature,1050,°C,1050 degrees Celsius,,,Fibers_material_data.csv
|
| 277 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL PROPERTIES,Thermal Conductivity,0.031-0.038,W/(m·K),Range 0.031 to 0.038 W/(m·K),,,Fibers_material_data.csv
|
| 278 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,E-modulus,2900-3200,GPa,Range 2900 to 3200 GPa,ASTM D2343,"Applies to RDR-10.90, RDR-11.110, RDR-13.150, RDR-17.250, RDR-17.600, RDR-19.600 series.",Fibers_material_data.csv
|
| 279 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,90-94,MPa,Range 90 to 94 MPa,ASTM D2343,For RDR-10.90,Fibers_material_data.csv
|
| 280 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,89-93,MPa,Range 89 to 93 MPa,ASTM D2343,For RDR-11.110,Fibers_material_data.csv
|
| 281 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,88-92,MPa,Range 88 to 92 MPa,ASTM D2343,For RDR-13.150,Fibers_material_data.csv
|
| 282 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,86-90,MPa,Range 86 to 90 MPa,ASTM D2343,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data.csv
|
| 283 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥750,mN/tex,Greater than or equal to 750 mN/tex,ASTM D3822,"For RDR-10.90, RDR-11.110",Fibers_material_data.csv
|
| 284 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D3822,For RDR-13.150,Fibers_material_data.csv
|
| 285 |
+
BASFIBER® ROVING,EGF-R-BASF,MECHANICAL PROPRIETIES,Tensile strength,≥650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D3822,"For RDR-17.250, RDR-17.600, RDR-19.600",Fibers_material_data.csv
|
| 286 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 700,mN/tex,Greater than or equal to 700 mN/tex,ASTM D-3822,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 287 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 650,mN/tex,Greater than or equal to 650 mN/tex,ASTM D-3822,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 288 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (dry fiber),≥ 600,mN/tex,Greater than or equal to 600 mN/tex,ASTM D-3822,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 289 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3200,MPa,3200 MPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 290 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),3100,MPa,3100 MPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 291 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (epoxy impregnated strand),2900,MPa,2900 MPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 292 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),90-94,GPa,Range 90 to 94 GPa,ASTM D-2343,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 293 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),88-92,GPa,Range 88 to 92 GPa,ASTM D-2343,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 294 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (epoxy impregnated strand),86-90,GPa,Range 86 to 90 GPa,ASTM D-2343,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 295 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4300,MPa,4300 MPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 296 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4200,MPa,4200 MPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 297 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile strength (Basalt monofilament),4000,MPa,4000 MPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 298 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),95,GPa,95 GPa,ASTM D-2101,Monofilament diameter 10 µm,Fibers_material_data.csv
|
| 299 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),93,GPa,93 GPa,ASTM D-2101,Monofilament diameter 13 µm,Fibers_material_data.csv
|
| 300 |
+
BASFIBER® ROVING,EGF-R-BASF,OTHER MECHANICAL PROPRIETIES,Tensile modulus (Basalt monofilament),92,GPa,92 GPa,ASTM D-2101,Monofilament diameter 17 µm,Fibers_material_data.csv
|
| 301 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.2,%,0.2% weight loss,3-hour boiling in water,,Fibers_material_data.csv
|
| 302 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),0.35,%,0.35% weight loss,3-hour boiling in saturated cement solution (pH 12.9),,Fibers_material_data.csv
|
| 303 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),7-Feb,%,2% to 7% weight loss,3-hour boiling in 2N solution HCl (hydrochloric acid),,Fibers_material_data.csv
|
| 304 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6,%,6% weight loss,3-hour boiling in 2N solution NaOH (sodium hydroxide),,Fibers_material_data.csv
|
| 305 |
+
BASFIBER® ROVING,EGF-R-BASF,CHEMICAL STABILITY,Weightlessness (Loss of weight),6-Feb,%,2% to 6% weight loss,30 minutes and in 180 minutes in H2SO4 (sulphuric acid),,Fibers_material_data.csv
|
| 306 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Sizing Content,"0,4-0,8",% WEIGHT,Range 0.4 to 0.8 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data.csv
|
| 307 |
+
BASFIBER® ROVING,EGF-R-BASF,SIZING COMPATIBILITY,Moisture Content,"<0,1",% WEIGHT,Less than 0.1 weight percent,,"Applies to all listed sizing types (10, 11, 12, 13, 42).",Fibers_material_data.csv
|
| 308 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From -260 up to +400,°C,-260 to +400 degrees Celsius,Permanent thermal load duration,,Fibers_material_data.csv
|
| 309 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 1),Up to +200,°C,Up to +200 degrees Celsius,,Amorphous fiber with sizing on the fiber surface,Fibers_material_data.csv
|
| 310 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 2),From +200 up to +350,°C,+200 to +350 degrees Celsius,,"Burning of sizing (10-15 minutes), amorphous fiber",Fibers_material_data.csv
|
| 311 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 3),From +350 up to +400,°C,+350 to +400 degrees Celsius,,Amorphous fiber without sizing on the fiber surface,Fibers_material_data.csv
|
| 312 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +400 up to +850,°C,+400 to +850 degrees Celsius,Short term (few minutes),Short term (few minutes). Also Stage 4: transition of FeO into Fe2O3 and beginning of crystallization,Fibers_material_data.csv
|
| 313 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range,From +850 up to +1250,°C,+850 to +1250 degrees Celsius,Short term (few seconds),,Fibers_material_data.csv
|
| 314 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Operating Temperature Range (Stage 5),From +850 up to +1050,°C,+850 to +1050 degrees Celsius,,"All the Fe2O3 is in crystal form. Material is extremely brittle, mechanical properties are extremely poor, but works as thermal insulation.",Fibers_material_data.csv
|
| 315 |
+
BASFIBER® ROVING,EGF-R-BASF,THERMAL OPERATION RANGE,Sintering Temperature (Stage 6),From +1050 up to +1250,°C,+1050 to +1250 degrees Celsius,,Sintering temperature,Fibers_material_data.csv
|
| 316 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,100,%,100% retention,+20°C,Baseline measurement,Fibers_material_data.csv
|
| 317 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,95,%,95% retention,+200°C,,Fibers_material_data.csv
|
| 318 |
+
BASFIBER® ROVING,EGF-R-BASF,TENSILE STRENGHT CHANGE BY THE HEATING OF BASFIBER®,Tensile Strength Change,80,%,80% retention,+400°C,,Fibers_material_data.csv
|
| 319 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Product Range,Deniers Range,50-5400,denier,50 to 5400 denier,,Range of available deniers for UHMWPE fibers.,Fibers_material_data.csv
|
| 320 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Breaking Tenacity,28,g/d,28.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 321 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 322 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Elongation @ Break,3.6,%,3.6 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 323 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Tensile Modulus,850,g/d,850 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 324 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 325 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 326 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 327 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 328 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,Standard Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 329 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Breaking Tenacity,38,g/d,38.0 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 330 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Specific Gravity,0.97,Ratio,0.97,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 331 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Elongation @ Break,3.1,%,3.1 percent,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 332 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Tensile Modulus,1250,g/d,1250 grams per denier,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 333 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Moisture Regain,<0.1,%,Less than 0.1 percent,Equilibrium moisture regain @ 55% RH,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 334 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Creep,1.7-5.0,%,1.7 to 5.0 percent,Creep @ 40%-58% ultimate tensile strength,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 335 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Shrinkage,Melts,%,Melts under test conditions,Shrinkage in dry air @ 177 C for 30 minutes,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 336 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Melt Point,147,°C,147 degrees Celsius,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 337 |
+
Ultra High Molecular Weight Polyethylene,UHMWPE,High Tenacity,Decomposition Temp.,TBD,°C,To Be Determined,,"Data provided for informational purposes only, and does not constitute a specification.",Fibers_material_data.csv
|
| 338 |
+
SE2350 single-end Type 30 roving,SE2350,STRAND TENSILES,Strength,2240,MPA,325,Amine/DER 331 Epoxy Resin; ASTM D 2343,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 339 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Dry Shear Strength,64.4,MPA,9340,Amine/DER 331 Epoxy Resin; ASTM D 2344,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 340 |
+
SE2350 single-end Type 30 roving,SE2350,INTERLAMINAR SHEAR STRENGTH NOL RING,Shear Strength Retention,95,%,95%,Amine/DER 331 Epoxy Resin; ASTM D 2344; 72 HR BOIL,Data generated using production material SE 2350 roving-250 Yield (2000 Tex - 16 Micron).,Fibers_material_data.csv
|
| 341 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Yield,250,,250,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data.csv
|
| 342 |
+
SE2350 single-end Type 30 roving,SE2350,Technical Characteristics,Tex,2000,Tex,2000,,Applicable for 16 and 22 micron fiber diameter.,Fibers_material_data.csv
|
| 343 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Typical fiber property,Fibers_material_data_.csv
|
| 344 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filler Content,62.0,%,62.0 %,,Fiber Volume of Typical epoxy composite,Fibers_material_data_.csv
|
| 345 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Physical Properties,Filament Diameter,6.9,µm,6.9 µm,,,Fibers_material_data_.csv
|
| 346 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",2140,MPa,310000 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 347 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,"Tensile Strength, Yield",4470,MPa,648000 psi,,Typical fiber property,Fibers_material_data_.csv
|
| 348 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Elongation at Break,1.9,%,1.9 %,,Calculated from tow test data,Fibers_material_data_.csv
|
| 349 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,136,GPa,19700 ksi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 350 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Tensile Modulus,221,GPa,32100 ksi,,Typical fiber property; Chord 6000-1000,Fibers_material_data_.csv
|
| 351 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Strength,1725,MPa,250200 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 352 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Flexural Modulus,128,GPa,18600 ksi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 353 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Mechanical Properties,Shear Strength,124,MPa,18000 psi,,Typical epoxy composite,Fibers_material_data_.csv
|
| 354 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Component Elements Properties,"Carbon, C",94,%,94 %,,Fiber,Fibers_material_data_.csv
|
| 355 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,1.25,m/g,,,12K,Fibers_material_data_.csv
|
| 356 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,2.5,m/g,,,6K,Fibers_material_data_.csv
|
| 357 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Approximate Yield,5,m/g,,,3K,Fibers_material_data_.csv
|
| 358 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Filament Shape,Round,,,,,Fibers_material_data_.csv
|
| 359 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.11,mm2,,,3K,Fibers_material_data_.csv
|
| 360 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.22,mm2,,,6K,Fibers_material_data_.csv
|
| 361 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Tow Cross-Sectional Area,0.44,mm2,,,12K,Fibers_material_data_.csv
|
| 362 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Twist,,,,,,Fibers_material_data_.csv
|
| 363 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.2,g/m,,,3K,Fibers_material_data_.csv
|
| 364 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.4,g/m,,,6K,Fibers_material_data_.csv
|
| 365 |
+
Hexcel® HexTow® AS2C Carbon Fiber,AS2C,Descriptive Properties,Weight/Length,0.8,g/m,,,12K,Fibers_material_data_.csv
|
| 366 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Specific Gravity,1.24,g/cc,1.24 g/cc,,ASTM D792,Fibers_material_data_.csv
|
| 367 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Melt Density,1.08,g/cc,0.0390 lb/in³,,ASTM D1238,Fibers_material_data_.csv
|
| 368 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Physical Properties,Viscosity Measurement,3.3,,3.3,@Temperature 230 °C,Relative Viscosity; CD Internal Viscotek Method (English test condition: @Temperature 446 °F),Fibers_material_data_.csv
|
| 369 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Elongation at Break,10 - 70,%,10 - 70 %,,Fiber; ASTM D2256/ASTM D3822,Fibers_material_data_.csv
|
| 370 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Mechanical Properties,Tenacity,0.221 - 0.353,N/tex,2.50 - 4.00 g/denier,,ASTM D2256/ASTM D3822,Fibers_material_data_.csv
|
| 371 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Melting Point,145 - 155,°C,293 - 311 °F,,ASTM D3418,Fibers_material_data_.csv
|
| 372 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,"Glass Transition Temp, Tg",55.0 - 65.0,°C,131 - 149 °F,,ASTM D3417,Fibers_material_data_.csv
|
| 373 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Thermal Properties,Shrinkage,<= 8.0,%,<= 8.0 %,"@Temperature 120 °C, Time 600 sec","Hot Air; ASTM D2102 (English test condition: @Temperature 248 °F, Time 0.167 hour)",Fibers_material_data_.csv
|
| 374 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Dew Point,-35.0,°C,-31.0 °F,,,Fibers_material_data_.csv
|
| 375 |
+
NatureWorks® Ingeo™ 5051X Fiber Grade PLA,5051X,Processing Properties,Drying Air Flow Rate,>= 14.2,l/min,>= 0.500 ft³/min (CFM),,,Fibers_material_data_.csv
|
| 376 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Density,1.79,g/cc,0.0647 lb/in³,,ISO 10119,Fibers_material_data_.csv
|
| 377 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Physical Properties,Fiber Count,16000,dtex,14400 denier,,ISO 1889,Fibers_material_data_.csv
|
| 378 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Strength,4900,MPa,711000 psi,,ISO 10618,Fibers_material_data_.csv
|
| 379 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Elongation at Break,2,%,2.0 %,,ISO 10618,Fibers_material_data_.csv
|
| 380 |
+
DowAksa AKSACA™ A-49 D 24K Continuous Carbon Fiber,,Mechanical Properties,Tensile Modulus,250,GPa,36300 ksi,,ISO 10618,Fibers_material_data_.csv
|
| 381 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Density,3.08,g/cc,0.111 lb/in³,,,Fibers_material_data_.csv
|
| 382 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Physical Properties,Thickness,142,microns,5.59 mil,,Diameter,Fibers_material_data_.csv
|
| 383 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,"Tensile Strength, Ultimate",5900,MPa,856000 psi,,,Fibers_material_data_.csv
|
| 384 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Mechanical Properties,Modulus of Elasticity,415,GPa,60200 ksi,,,Fibers_material_data_.csv
|
| 385 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Thermal Properties,"CTE, linear",4.10,µm/m-°C,2.28 µin/in-°F,@Temperature 20.0 °C @Temperature 68.0 °F,,Fibers_material_data_.csv
|
| 386 |
+
SCS-Ultra™ Silicon Carbide Fiber,SCS-Ultra™,Descriptive Properties,Cross Section,Round,,,,,Fibers_material_data_.csv
|
| 387 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Bulk Density,0.220,g/cc,0.00795 lb/in³,,,Fibers_material_data_.csv
|
| 388 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Density,1.80,g/cc,0.0650 lb/in³,,Fiber Density,Fibers_material_data_.csv
|
| 389 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Physical Properties,Filament Diameter,7.5,µm,7.5 µm,,,Fibers_material_data_.csv
|
| 390 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Tensile Strength at Break,3600,MPa,522000 psi,,ASTM D3379-104,Fibers_material_data_.csv
|
| 391 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Elongation at Break,1.4-1.8,%,1.4-1.8 %,,ASTM D3379-75,Fibers_material_data_.csv
|
| 392 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Mechanical Properties,Modulus of Elasticity,225,GPa,32600 ksi,,ASTM D3379-104,Fibers_material_data_.csv
|
| 393 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Electrical Properties,Volume Resistivity,0.0016,ohm-cm,0.0016 ohm-cm,,,Fibers_material_data_.csv
|
| 394 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Carbon Content,>95,wt %,,,,Fibers_material_data_.csv
|
| 395 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Mean Fiber Length,0.155,mm,,,Milled,Fibers_material_data_.csv
|
| 396 |
+
"SGL Carbon Group SIGRAFIL C® C25 P350 GLY Pelletized Carbon Fiber, Glycerine Sizing",SIGRAFIL C,Descriptive Properties,Sizing Content,1.5 - 6.5,% by weight,,,,Fibers_material_data_.csv
|
src/data/data/M77793.json
ADDED
|
@@ -0,0 +1,861 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"material_abbreviation": "ABS",
|
| 3 |
+
"material_name": "Acrylonitrile Butadiene Styrene (ABS), Molded",
|
| 4 |
+
"mechanical_properties": [
|
| 5 |
+
{
|
| 6 |
+
"property_name": "Density",
|
| 7 |
+
"value": "0.882 - 3.50",
|
| 8 |
+
"english": "0.0319 - 0.126 lb/in³",
|
| 9 |
+
"comments": "Average value: 1.07 g/cc Grade Count:774",
|
| 10 |
+
"section": "Physical Properties",
|
| 11 |
+
"test_condition": "",
|
| 12 |
+
"unit": "g/cc"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"property_name": "Water Absorption",
|
| 16 |
+
"value": "0.0250 - 2.30",
|
| 17 |
+
"english": "0.0250 - 2.30 %",
|
| 18 |
+
"comments": "Average value: 0.383 % Grade Count:85",
|
| 19 |
+
"section": "Physical Properties",
|
| 20 |
+
"test_condition": "",
|
| 21 |
+
"unit": "%"
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"property_name": "Moisture Absorption at Equilibrium",
|
| 25 |
+
"value": "0.100 - 0.300",
|
| 26 |
+
"english": "0.100 - 0.300 %",
|
| 27 |
+
"comments": "Average value: 0.232 % Grade Count:26",
|
| 28 |
+
"section": "Physical Properties",
|
| 29 |
+
"test_condition": "",
|
| 30 |
+
"unit": "%"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"property_name": "Water Absorption at Saturation",
|
| 34 |
+
"value": "0.00950 - 1.03",
|
| 35 |
+
"english": "0.00950 - 1.03 %",
|
| 36 |
+
"comments": "Average value: 0.561 % Grade Count:14",
|
| 37 |
+
"section": "Physical Properties",
|
| 38 |
+
"test_condition": "",
|
| 39 |
+
"unit": "%"
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"property_name": "Maximum Moisture Content",
|
| 43 |
+
"value": "0.0100 - 0.150",
|
| 44 |
+
"english": "0.0100 - 0.150",
|
| 45 |
+
"comments": "Average value: 0.0459 Grade Count:71",
|
| 46 |
+
"section": "Physical Properties",
|
| 47 |
+
"test_condition": "",
|
| 48 |
+
"unit": ""
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"property_name": "Linear Mold Shrinkage",
|
| 52 |
+
"value": "0.000 - 0.0290",
|
| 53 |
+
"english": "0.000 - 0.0290 in/in",
|
| 54 |
+
"comments": "Average value: 0.00533 cm/cm Grade Count:581",
|
| 55 |
+
"section": "Physical Properties",
|
| 56 |
+
"test_condition": "",
|
| 57 |
+
"unit": "cm/cm"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"property_name": "Linear Mold Shrinkage, Transverse",
|
| 61 |
+
"value": "0.00200 - 0.00900",
|
| 62 |
+
"english": "0.00200 - 0.00900 in/in",
|
| 63 |
+
"comments": "Average value: 0.00522 cm/cm Grade Count:52",
|
| 64 |
+
"section": "Physical Properties",
|
| 65 |
+
"test_condition": "",
|
| 66 |
+
"unit": "cm/cm"
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"property_name": "Melt Flow",
|
| 70 |
+
"value": "0.0800 - 125",
|
| 71 |
+
"english": "0.0800 - 125 g/10 min",
|
| 72 |
+
"comments": "Average value: 16.5 g/10 min Grade Count:805",
|
| 73 |
+
"section": "Physical Properties",
|
| 74 |
+
"test_condition": "",
|
| 75 |
+
"unit": "g/10 min"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"property_name": "Hardness, Rockwell M",
|
| 79 |
+
"value": "53.0 - 92.0",
|
| 80 |
+
"english": "53.0 - 92.0",
|
| 81 |
+
"comments": "Average value: 71.8 Grade Count:4",
|
| 82 |
+
"section": "Mechanical Properties",
|
| 83 |
+
"test_condition": "",
|
| 84 |
+
"unit": ""
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"property_name": "Hardness, Rockwell R",
|
| 88 |
+
"value": "13.0 - 122",
|
| 89 |
+
"english": "13.0 - 122",
|
| 90 |
+
"comments": "Average value: 108 Grade Count:431",
|
| 91 |
+
"section": "Mechanical Properties",
|
| 92 |
+
"test_condition": "",
|
| 93 |
+
"unit": ""
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"property_name": "Hardness, Shore D",
|
| 97 |
+
"value": "79.0 - 103",
|
| 98 |
+
"english": "79.0 - 103",
|
| 99 |
+
"comments": "Average value: 87.0 Grade Count:3",
|
| 100 |
+
"section": "Mechanical Properties",
|
| 101 |
+
"test_condition": "",
|
| 102 |
+
"unit": ""
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"property_name": "Ball Indentation Hardness",
|
| 106 |
+
"value": "70.0 - 120",
|
| 107 |
+
"english": "10200 - 17400 psi",
|
| 108 |
+
"comments": "Average value: 101 MPa Grade Count:68",
|
| 109 |
+
"section": "Mechanical Properties",
|
| 110 |
+
"test_condition": "",
|
| 111 |
+
"unit": "MPa"
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"property_name": "Tensile Strength, Ultimate",
|
| 115 |
+
"value": "2.60 - 73.1",
|
| 116 |
+
"english": "377 - 10600 psi",
|
| 117 |
+
"comments": "Average value: 41.0 MPa Grade Count:346",
|
| 118 |
+
"section": "Mechanical Properties",
|
| 119 |
+
"test_condition": "",
|
| 120 |
+
"unit": "MPa"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"property_name": "Tensile Strength, Ultimate",
|
| 124 |
+
"value": "20.0 - 43.0",
|
| 125 |
+
"english": "2900 - 6240 psi",
|
| 126 |
+
"comments": "Average value: 31.8 MPa Grade Count:2",
|
| 127 |
+
"section": "Mechanical Properties",
|
| 128 |
+
"test_condition": "@Temperature 60.0 - 90.0 °C",
|
| 129 |
+
"unit": "MPa"
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"property_name": "Tensile Strength, Yield",
|
| 133 |
+
"value": "2.00 - 77.0",
|
| 134 |
+
"english": "290 - 11200 psi",
|
| 135 |
+
"comments": "Average value: 44.8 MPa Grade Count:624",
|
| 136 |
+
"section": "Mechanical Properties",
|
| 137 |
+
"test_condition": "",
|
| 138 |
+
"unit": "MPa"
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"property_name": "Elongation at Break",
|
| 142 |
+
"value": "1.40 - 110",
|
| 143 |
+
"english": "1.40 - 110 %",
|
| 144 |
+
"comments": "Average value: 28.5 % Grade Count:493",
|
| 145 |
+
"section": "Mechanical Properties",
|
| 146 |
+
"test_condition": "",
|
| 147 |
+
"unit": "%"
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"property_name": "Elongation at Yield",
|
| 151 |
+
"value": "1.70 - 40.0",
|
| 152 |
+
"english": "1.70 - 40.0 %",
|
| 153 |
+
"comments": "Average value: 3.66 % Grade Count:189",
|
| 154 |
+
"section": "Mechanical Properties",
|
| 155 |
+
"test_condition": "",
|
| 156 |
+
"unit": "%"
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"property_name": "Modulus of Elasticity",
|
| 160 |
+
"value": "0.778 - 21.2",
|
| 161 |
+
"english": "113 - 3080 ksi",
|
| 162 |
+
"comments": "Average value: 2.35 GPa Grade Count:356",
|
| 163 |
+
"section": "Mechanical Properties",
|
| 164 |
+
"test_condition": "",
|
| 165 |
+
"unit": "GPa"
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"property_name": "Flexural Yield Strength",
|
| 169 |
+
"value": "0.379 - 655",
|
| 170 |
+
"english": "55.0 - 95000 psi",
|
| 171 |
+
"comments": "Average value: 70.6 MPa Grade Count:626",
|
| 172 |
+
"section": "Mechanical Properties",
|
| 173 |
+
"test_condition": "",
|
| 174 |
+
"unit": "MPa"
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"property_name": "Flexural Modulus",
|
| 178 |
+
"value": "0.0241 - 6.89",
|
| 179 |
+
"english": "3.50 - 1000 ksi",
|
| 180 |
+
"comments": "Average value: 2.33 GPa Grade Count:699",
|
| 181 |
+
"section": "Mechanical Properties",
|
| 182 |
+
"test_condition": "",
|
| 183 |
+
"unit": "GPa"
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"property_name": "Flexural Modulus",
|
| 187 |
+
"value": "1.50 - 4.00",
|
| 188 |
+
"english": "218 - 580 ksi",
|
| 189 |
+
"comments": "Average value: 2.84 GPa Grade Count:2",
|
| 190 |
+
"section": "Mechanical Properties",
|
| 191 |
+
"test_condition": "@Temperature 60.0 - 90.0 °C",
|
| 192 |
+
"unit": "GPa"
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"property_name": "Poissons Ratio",
|
| 196 |
+
"value": "0.360 - 0.380",
|
| 197 |
+
"english": "0.360 - 0.380",
|
| 198 |
+
"comments": "Average value: 0.364 Grade Count:5",
|
| 199 |
+
"section": "Mechanical Properties",
|
| 200 |
+
"test_condition": "",
|
| 201 |
+
"unit": ""
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"property_name": "Izod Impact, Notched",
|
| 205 |
+
"value": "0.100 - 7.85",
|
| 206 |
+
"english": "0.187 - 14.7 ft-lb/in",
|
| 207 |
+
"comments": "Average value: 2.41 J/cm Grade Count:516",
|
| 208 |
+
"section": "Mechanical Properties",
|
| 209 |
+
"test_condition": "",
|
| 210 |
+
"unit": "J/cm"
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"property_name": "Izod Impact, Notched",
|
| 214 |
+
"value": "0.350 - 3.00",
|
| 215 |
+
"english": "0.656 - 5.62 ft-lb/in",
|
| 216 |
+
"comments": "Average value: 1.00 J/cm Grade Count:23",
|
| 217 |
+
"section": "Mechanical Properties",
|
| 218 |
+
"test_condition": "@Temperature -50.0 - 0.000 °C",
|
| 219 |
+
"unit": "J/cm"
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"property_name": "Izod Impact, Notched",
|
| 223 |
+
"value": "0.290 - 2.35",
|
| 224 |
+
"english": "0.543 - 4.40 ft-lb/in",
|
| 225 |
+
"comments": "Average value: 1.00 J/cm Grade Count:30",
|
| 226 |
+
"section": "Mechanical Properties",
|
| 227 |
+
"test_condition": "@Temperature -40.0 - 0.000 °C",
|
| 228 |
+
"unit": "J/cm"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"property_name": "Izod Impact, Notched",
|
| 232 |
+
"value": "0.290 - 2.35",
|
| 233 |
+
"english": "0.543 - 4.40 ft-lb/in",
|
| 234 |
+
"comments": "Average value: 1.00 J/cm Grade Count:30",
|
| 235 |
+
"section": "Mechanical Properties",
|
| 236 |
+
"test_condition": "@Thickness 3.17 - 12.7 mm",
|
| 237 |
+
"unit": "J/cm"
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"property_name": "Izod Impact, Unnotched",
|
| 241 |
+
"value": "1.50 J/cm - NB",
|
| 242 |
+
"english": "2.81 ft-lb/in - NB",
|
| 243 |
+
"comments": "Average value: 8.79 J/cm Grade Count:27",
|
| 244 |
+
"section": "Mechanical Properties",
|
| 245 |
+
"test_condition": "",
|
| 246 |
+
"unit": "J/cm"
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"property_name": "Izod Impact, Unnotched",
|
| 250 |
+
"value": "0.600 - 6.47239",
|
| 251 |
+
"english": "1.12 - 12.1254 ft-lb/in",
|
| 252 |
+
"comments": "Average value: 1.24 J/cm Grade Count:4",
|
| 253 |
+
"section": "Mechanical Properties",
|
| 254 |
+
"test_condition": "@Temperature -30.0 - 0.125 °C",
|
| 255 |
+
"unit": "J/cm"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"property_name": "Izod Impact, Unnotched",
|
| 259 |
+
"value": "0.392266 - 4.8051",
|
| 260 |
+
"english": "0.734875 - 9.0019 ft-lb/in",
|
| 261 |
+
"comments": "Average value: 1.24 J/cm Grade Count:34",
|
| 262 |
+
"section": "Mechanical Properties",
|
| 263 |
+
"test_condition": "@Temperature -30.0 - -20.0 °C",
|
| 264 |
+
"unit": "J/cm"
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"property_name": "Izod Impact, Unnotched",
|
| 268 |
+
"value": "0.392266 - 4.8051",
|
| 269 |
+
"english": "0.734875 - 9.0019 ft-lb/in",
|
| 270 |
+
"comments": "Average value: 1.24 J/cm Grade Count:34",
|
| 271 |
+
"section": "Mechanical Properties",
|
| 272 |
+
"test_condition": "@Thickness 3.20 - 6.40 mm",
|
| 273 |
+
"unit": "J/cm"
|
| 274 |
+
},
|
| 275 |
+
{
|
| 276 |
+
"property_name": "Izod Impact, Notched (ISO)",
|
| 277 |
+
"value": "1.00 - 45.0",
|
| 278 |
+
"english": "0.476 - 21.4 ft-lb/in²",
|
| 279 |
+
"comments": "Average value: 18.5 kJ/m² Grade Count:184",
|
| 280 |
+
"section": "Mechanical Properties",
|
| 281 |
+
"test_condition": "",
|
| 282 |
+
"unit": "kJ/m²"
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"property_name": "Izod Impact, Notched (ISO)",
|
| 286 |
+
"value": "6.00 - 22.0",
|
| 287 |
+
"english": "2.86 - 10.5 ft-lb/in²",
|
| 288 |
+
"comments": "Average value: 9.13 kJ/m² Grade Count:61",
|
| 289 |
+
"section": "Mechanical Properties",
|
| 290 |
+
"test_condition": "@Temperature -40.0 - -20.0 °C",
|
| 291 |
+
"unit": "kJ/m²"
|
| 292 |
+
},
|
| 293 |
+
{
|
| 294 |
+
"property_name": "Izod Impact, Unnotched (ISO)",
|
| 295 |
+
"value": "6.00 - 6.00",
|
| 296 |
+
"english": "2.86 - 2.86 ft-lb/in²",
|
| 297 |
+
"comments": "Average value: 9.13 kJ/m² Grade Count:1",
|
| 298 |
+
"section": "Mechanical Properties",
|
| 299 |
+
"test_condition": "@Temperature -40.0 - -40.0 °C",
|
| 300 |
+
"unit": "kJ/m²"
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"property_name": "Izod Impact, Unnotched (ISO)",
|
| 304 |
+
"value": "6.00 - 6.00",
|
| 305 |
+
"english": "2.86 - 2.86 ft-lb/in²",
|
| 306 |
+
"comments": "Average value: 9.13 kJ/m² Grade Count:1",
|
| 307 |
+
"section": "Mechanical Properties",
|
| 308 |
+
"test_condition": "@Thickness 4.00 - 4.00 mm",
|
| 309 |
+
"unit": "kJ/m²"
|
| 310 |
+
},
|
| 311 |
+
{
|
| 312 |
+
"property_name": "Charpy Impact Unnotched",
|
| 313 |
+
"value": "39.2 kJ/m² NB",
|
| 314 |
+
"english": "18.7 ft-lb/in² - NB",
|
| 315 |
+
"comments": "Average value: 77.2 kJ/m² Grade Count:27",
|
| 316 |
+
"section": "Mechanical Properties",
|
| 317 |
+
"test_condition": "",
|
| 318 |
+
"unit": "kJ/m²"
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"property_name": "Charpy Impact Unnotched",
|
| 322 |
+
"value": "60.0 - 70.0",
|
| 323 |
+
"english": "28.6 - 33.3 ft-lb/in²",
|
| 324 |
+
"comments": "Average value: 68.0 kJ/m² Grade Count:5",
|
| 325 |
+
"section": "Mechanical Properties",
|
| 326 |
+
"test_condition": "@Temperature -30.0 - -30.0 °C",
|
| 327 |
+
"unit": "kJ/m²"
|
| 328 |
+
},
|
| 329 |
+
{
|
| 330 |
+
"property_name": "Charpy Impact Unnotched",
|
| 331 |
+
"value": "1.00 J/cm² NB",
|
| 332 |
+
"english": "4.76 ft-lb/in² - NB",
|
| 333 |
+
"comments": "Average value: 11.4 J/cm² Grade Count:145",
|
| 334 |
+
"section": "Mechanical Properties",
|
| 335 |
+
"test_condition": "",
|
| 336 |
+
"unit": "J/cm²"
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"property_name": "Charpy Impact Unnotched",
|
| 340 |
+
"value": "0.300 J/cm² NB",
|
| 341 |
+
"english": "1.43 ft-lb/in² - NB",
|
| 342 |
+
"comments": "Average value: 7.48 J/cm² Grade Count:96",
|
| 343 |
+
"section": "Mechanical Properties",
|
| 344 |
+
"test_condition": "@Temperature -40.0 - -20.0 °C",
|
| 345 |
+
"unit": "J/cm²"
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"property_name": "Charpy Impact, Notched",
|
| 349 |
+
"value": "0.100 - 14.0",
|
| 350 |
+
"english": "0.476 - 66.6 ft-lb/in²",
|
| 351 |
+
"comments": "Average value: 1.90 J/cm² Grade Count:292",
|
| 352 |
+
"section": "Mechanical Properties",
|
| 353 |
+
"test_condition": "",
|
| 354 |
+
"unit": "J/cm²"
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"property_name": "Charpy Impact, Notched",
|
| 358 |
+
"value": "0.200 - 2.40",
|
| 359 |
+
"english": "0.952 - 11.4 ft-lb/in²",
|
| 360 |
+
"comments": "Average value: 0.877 J/cm² Grade Count:103",
|
| 361 |
+
"section": "Mechanical Properties",
|
| 362 |
+
"test_condition": "@Temperature -40.0 - -20.0 °C",
|
| 363 |
+
"unit": "J/cm²"
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"property_name": "Gardner Impact",
|
| 367 |
+
"value": "1.80 - 22.6",
|
| 368 |
+
"english": "1.33 - 16.7 ft-lb",
|
| 369 |
+
"comments": "Average value: 15.9 J Grade Count:7",
|
| 370 |
+
"section": "Mechanical Properties",
|
| 371 |
+
"test_condition": "",
|
| 372 |
+
"unit": "J"
|
| 373 |
+
},
|
| 374 |
+
{
|
| 375 |
+
"property_name": "Dart Drop, Total Energy",
|
| 376 |
+
"value": "2.37 - 46.3",
|
| 377 |
+
"english": "1.75 - 34.1 ft-lb",
|
| 378 |
+
"comments": "Average value: 28.0 J Grade Count:5",
|
| 379 |
+
"section": "Mechanical Properties",
|
| 380 |
+
"test_condition": "",
|
| 381 |
+
"unit": "J"
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"property_name": "Dart Drop, Total Energy",
|
| 385 |
+
"value": "32.8 - 32.8",
|
| 386 |
+
"english": "24.2 - 24.2 ft-lb",
|
| 387 |
+
"comments": "Average value: 35.8 J Grade Count:1",
|
| 388 |
+
"section": "Mechanical Properties",
|
| 389 |
+
"test_condition": "@Temperature -18.0 - -18.0 °C",
|
| 390 |
+
"unit": "J"
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"property_name": "Dart Drop, Total Energy",
|
| 394 |
+
"value": "37.3 - 37.3",
|
| 395 |
+
"english": "27.5 - 27.5 ft-lb",
|
| 396 |
+
"comments": "Average value: 35.8 J Grade Count:1",
|
| 397 |
+
"section": "Mechanical Properties",
|
| 398 |
+
"test_condition": "@Temperature -18.0 - -18.0 °C",
|
| 399 |
+
"unit": "J"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"property_name": "Dart Drop, Total Energy",
|
| 403 |
+
"value": "37.3 - 37.3",
|
| 404 |
+
"english": "27.5 - 27.5 ft-lb",
|
| 405 |
+
"comments": "Average value: 35.8 J Grade Count:1",
|
| 406 |
+
"section": "Mechanical Properties",
|
| 407 |
+
"test_condition": "@Thickness 3.20 - 3.20 mm",
|
| 408 |
+
"unit": "J"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"property_name": "Falling Dart Impact",
|
| 412 |
+
"value": "2.82 - 37.6",
|
| 413 |
+
"english": "2.08 - 27.7 ft-lb",
|
| 414 |
+
"comments": "Average value: 25.3 J Grade Count:9",
|
| 415 |
+
"section": "Mechanical Properties",
|
| 416 |
+
"test_condition": "",
|
| 417 |
+
"unit": "J"
|
| 418 |
+
},
|
| 419 |
+
{
|
| 420 |
+
"property_name": "Instrumented Impact Total Energy",
|
| 421 |
+
"value": "5.40 - 54.0",
|
| 422 |
+
"english": "3.98 - 39.8 ft-lb",
|
| 423 |
+
"comments": "Average value: 39.6 J Grade Count:21",
|
| 424 |
+
"section": "Mechanical Properties",
|
| 425 |
+
"test_condition": "",
|
| 426 |
+
"unit": "J"
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"property_name": "Tensile Creep Modulus, 1 hour",
|
| 430 |
+
"value": "2200 - 2800",
|
| 431 |
+
"english": "319000 - 406000 psi",
|
| 432 |
+
"comments": "Average value: 2480 MPa Grade Count:4",
|
| 433 |
+
"section": "Mechanical Properties",
|
| 434 |
+
"test_condition": "",
|
| 435 |
+
"unit": "MPa"
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"property_name": "Tensile Creep Modulus, 1000 hours",
|
| 439 |
+
"value": "1250 - 1900",
|
| 440 |
+
"english": "181000 - 276000 psi",
|
| 441 |
+
"comments": "Average value: 1640 MPa Grade Count:4",
|
| 442 |
+
"section": "Mechanical Properties",
|
| 443 |
+
"test_condition": "",
|
| 444 |
+
"unit": "MPa"
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"property_name": "Electrical Resistivity",
|
| 448 |
+
"value": "1500 - 1.00e+18",
|
| 449 |
+
"english": "1500 - 1.00e+18 ohm-cm",
|
| 450 |
+
"comments": "Average value: 1.87e+16 ohm-cm Grade Count:127",
|
| 451 |
+
"section": "Electrical Properties",
|
| 452 |
+
"test_condition": "",
|
| 453 |
+
"unit": "ohm-cm"
|
| 454 |
+
},
|
| 455 |
+
{
|
| 456 |
+
"property_name": "Surface Resistance",
|
| 457 |
+
"value": "1000 - 2.00e+17",
|
| 458 |
+
"english": "1000 - 2.00e+17 ohm",
|
| 459 |
+
"comments": "Average value: 6.94e+15 ohm Grade Count:120",
|
| 460 |
+
"section": "Electrical Properties",
|
| 461 |
+
"test_condition": "",
|
| 462 |
+
"unit": "ohm"
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"property_name": "Static Decay",
|
| 466 |
+
"value": "0.250 - 3.00",
|
| 467 |
+
"english": "0.250 - 3.00 sec",
|
| 468 |
+
"comments": "Average value: 1.24 sec Grade Count:7",
|
| 469 |
+
"section": "Electrical Properties",
|
| 470 |
+
"test_condition": "",
|
| 471 |
+
"unit": "sec"
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"property_name": "Dielectric Constant",
|
| 475 |
+
"value": "2.70 - 3.80",
|
| 476 |
+
"english": "2.70 - 3.80",
|
| 477 |
+
"comments": "Average value: 2.98 Grade Count:54",
|
| 478 |
+
"section": "Electrical Properties",
|
| 479 |
+
"test_condition": "",
|
| 480 |
+
"unit": ""
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"property_name": "Dielectric Strength",
|
| 484 |
+
"value": "15.7 - 53.0",
|
| 485 |
+
"english": "400 - 1350 kV/in",
|
| 486 |
+
"comments": "Average value: 32.0 kV/mm Grade Count:80",
|
| 487 |
+
"section": "Electrical Properties",
|
| 488 |
+
"test_condition": "",
|
| 489 |
+
"unit": "kV/mm"
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"property_name": "Dissipation Factor",
|
| 493 |
+
"value": "0.00400 - 0.0900",
|
| 494 |
+
"english": "0.00400 - 0.0900",
|
| 495 |
+
"comments": "Average value: 0.00949 Grade Count:52",
|
| 496 |
+
"section": "Electrical Properties",
|
| 497 |
+
"test_condition": "",
|
| 498 |
+
"unit": ""
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"property_name": "Arc Resistance",
|
| 502 |
+
"value": "0.000 - 180",
|
| 503 |
+
"english": "0.000 - 180 sec",
|
| 504 |
+
"comments": "Average value: 78.8 sec Grade Count:28",
|
| 505 |
+
"section": "Electrical Properties",
|
| 506 |
+
"test_condition": "",
|
| 507 |
+
"unit": "sec"
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"property_name": "Comparative Tracking Index",
|
| 511 |
+
"value": "92.0 - 600",
|
| 512 |
+
"english": "92.0 - 600 V",
|
| 513 |
+
"comments": "Average value: 561 V Grade Count:93",
|
| 514 |
+
"section": "Electrical Properties",
|
| 515 |
+
"test_condition": "",
|
| 516 |
+
"unit": "V"
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"property_name": "Hot Wire Ignition, HWI",
|
| 520 |
+
"value": "7.00 - 120",
|
| 521 |
+
"english": "7.00 - 120 sec",
|
| 522 |
+
"comments": "Average value: 26.9 sec Grade Count:33",
|
| 523 |
+
"section": "Electrical Properties",
|
| 524 |
+
"test_condition": "",
|
| 525 |
+
"unit": "sec"
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"property_name": "High Amp Arc Ignition, HAI",
|
| 529 |
+
"value": "30.0 - 200",
|
| 530 |
+
"english": "30.0 - 200 arcs",
|
| 531 |
+
"comments": "Average value: 123 arcs Grade Count:33",
|
| 532 |
+
"section": "Electrical Properties",
|
| 533 |
+
"test_condition": "",
|
| 534 |
+
"unit": "arcs"
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"property_name": "High Voltage Arc-Tracking Rate, HVTR",
|
| 538 |
+
"value": "0.000 - 150",
|
| 539 |
+
"english": "0.000 - 5.91 in/min",
|
| 540 |
+
"comments": "Average value: 34.4 mm/min Grade Count:31",
|
| 541 |
+
"section": "Electrical Properties",
|
| 542 |
+
"test_condition": "",
|
| 543 |
+
"unit": "mm/min"
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"property_name": "CTE, linear",
|
| 547 |
+
"value": "7.90 - 139",
|
| 548 |
+
"english": "4.39 - 77.2 µin/in-°F",
|
| 549 |
+
"comments": "Average value: 83.4 µm/m-°C Grade Count:189",
|
| 550 |
+
"section": "Thermal Properties",
|
| 551 |
+
"test_condition": "",
|
| 552 |
+
"unit": "µm/m-°C"
|
| 553 |
+
},
|
| 554 |
+
{
|
| 555 |
+
"property_name": "CTE, linear, Transverse to Flow",
|
| 556 |
+
"value": "81.0 - 100",
|
| 557 |
+
"english": "45.0 - 55.6 µin/in-°F",
|
| 558 |
+
"comments": "Average value: 91.4 µm/m-°C Grade Count:15",
|
| 559 |
+
"section": "Thermal Properties",
|
| 560 |
+
"test_condition": "",
|
| 561 |
+
"unit": "µm/m-°C"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"property_name": "Specific Heat Capacity",
|
| 565 |
+
"value": "1.60 - 2.13",
|
| 566 |
+
"english": "0.382 - 0.509 BTU/lb-°F",
|
| 567 |
+
"comments": "Average value: 1.99 J/g-°C Grade Count:7",
|
| 568 |
+
"section": "Thermal Properties",
|
| 569 |
+
"test_condition": "",
|
| 570 |
+
"unit": "J/g-°C"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"property_name": "Thermal Conductivity",
|
| 574 |
+
"value": "0.128 - 0.187",
|
| 575 |
+
"english": "0.888 - 1.30 BTU-in/hr-ft²-°F",
|
| 576 |
+
"comments": "Average value: 0.162 W/m-K Grade Count:19",
|
| 577 |
+
"section": "Thermal Properties",
|
| 578 |
+
"test_condition": "",
|
| 579 |
+
"unit": "W/m-K"
|
| 580 |
+
},
|
| 581 |
+
{
|
| 582 |
+
"property_name": "Thermal Conductivity",
|
| 583 |
+
"value": "0.250 - 0.250",
|
| 584 |
+
"english": "1.74 - 1.74 BTU-in/hr-ft²-°F",
|
| 585 |
+
"comments": "Average value: 0.250 W/m-K Grade Count:1",
|
| 586 |
+
"section": "Thermal Properties",
|
| 587 |
+
"test_condition": "@Temperature 30.0 - 260 °C",
|
| 588 |
+
"unit": "W/m-K"
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"property_name": "Maximum Service Temperature, Air",
|
| 592 |
+
"value": "50.0 - 109",
|
| 593 |
+
"english": "122 - 228 °F",
|
| 594 |
+
"comments": "Average value: 74.9 °C Grade Count:24",
|
| 595 |
+
"section": "Thermal Properties",
|
| 596 |
+
"test_condition": "",
|
| 597 |
+
"unit": "°C"
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"property_name": "Hot Ball Pressure Test",
|
| 601 |
+
"value": "75.0 - 105",
|
| 602 |
+
"english": "167 - 221 °F",
|
| 603 |
+
"comments": "Average value: 88.0 °C Grade Count:27",
|
| 604 |
+
"section": "Thermal Properties",
|
| 605 |
+
"test_condition": "",
|
| 606 |
+
"unit": "°C"
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"property_name": "Deflection Temperature at 0.46 MPa (66 psi)",
|
| 610 |
+
"value": "56.0 - 165",
|
| 611 |
+
"english": "133 - 329 °F",
|
| 612 |
+
"comments": "Average value: 95.3 °C Grade Count:256",
|
| 613 |
+
"section": "Thermal Properties",
|
| 614 |
+
"test_condition": "0.46 MPa (66 psi)",
|
| 615 |
+
"unit": "°C"
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"property_name": "Deflection Temperature at 1.8 MPa (264 psi)",
|
| 619 |
+
"value": "63.9 - 220",
|
| 620 |
+
"english": "147 - 428 °F",
|
| 621 |
+
"comments": "Average value: 89.0 °C Grade Count:702",
|
| 622 |
+
"section": "Thermal Properties",
|
| 623 |
+
"test_condition": "1.8 MPa (264 psi)",
|
| 624 |
+
"unit": "°C"
|
| 625 |
+
},
|
| 626 |
+
{
|
| 627 |
+
"property_name": "Vicat Softening Point",
|
| 628 |
+
"value": "45.0 - 160",
|
| 629 |
+
"english": "113 - 320 °F",
|
| 630 |
+
"comments": "Average value: 99.5 °C Grade Count:571",
|
| 631 |
+
"section": "Thermal Properties",
|
| 632 |
+
"test_condition": "",
|
| 633 |
+
"unit": "°C"
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"property_name": "Heat Distortion Temperature",
|
| 637 |
+
"value": "76.4 - 87.8",
|
| 638 |
+
"english": "170 - 190 °F",
|
| 639 |
+
"comments": "Average value: 84.2 °C Grade Count:6",
|
| 640 |
+
"section": "Thermal Properties",
|
| 641 |
+
"test_condition": "",
|
| 642 |
+
"unit": "°C"
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"property_name": "Glass Transition Temp, Tg",
|
| 646 |
+
"value": "105 - 109",
|
| 647 |
+
"english": "221 - 228 °F",
|
| 648 |
+
"comments": "Average value: 107 °C Grade Count:9",
|
| 649 |
+
"section": "Thermal Properties",
|
| 650 |
+
"test_condition": "",
|
| 651 |
+
"unit": "°C"
|
| 652 |
+
},
|
| 653 |
+
{
|
| 654 |
+
"property_name": "UL RTI Electrical",
|
| 655 |
+
"value": "50.0 - 120",
|
| 656 |
+
"english": "122 - 248 °F",
|
| 657 |
+
"comments": "Average value: 73.4 °C Grade Count:94",
|
| 658 |
+
"section": "Thermal Properties",
|
| 659 |
+
"test_condition": "",
|
| 660 |
+
"unit": "°C"
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"property_name": "UL RTI, Mechanical with Impact",
|
| 664 |
+
"value": "50.0 - 105",
|
| 665 |
+
"english": "122 - 221 °F",
|
| 666 |
+
"comments": "Average value: 71.1 °C Grade Count:85",
|
| 667 |
+
"section": "Thermal Properties",
|
| 668 |
+
"test_condition": "",
|
| 669 |
+
"unit": "°C"
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"property_name": "UL RTI, Mechanical without Impact",
|
| 673 |
+
"value": "50.0 - 120",
|
| 674 |
+
"english": "122 - 248 °F",
|
| 675 |
+
"comments": "Average value: 73.2 °C Grade Count:84",
|
| 676 |
+
"section": "Thermal Properties",
|
| 677 |
+
"test_condition": "",
|
| 678 |
+
"unit": "°C"
|
| 679 |
+
},
|
| 680 |
+
{
|
| 681 |
+
"property_name": "Flammability, UL94",
|
| 682 |
+
"value": "HB - 5VA",
|
| 683 |
+
"english": "HB - 5VA",
|
| 684 |
+
"comments": "Average value: 1.50 Grade Count:511",
|
| 685 |
+
"section": "Thermal Properties",
|
| 686 |
+
"test_condition": "",
|
| 687 |
+
"unit": ""
|
| 688 |
+
},
|
| 689 |
+
{
|
| 690 |
+
"property_name": "Oxygen Index",
|
| 691 |
+
"value": "19.0 - 30.0",
|
| 692 |
+
"english": "19.0 - 30.0 %",
|
| 693 |
+
"comments": "Average value: 21.6 % Grade Count:5",
|
| 694 |
+
"section": "Thermal Properties",
|
| 695 |
+
"test_condition": "",
|
| 696 |
+
"unit": "%"
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"property_name": "Glow Wire Test",
|
| 700 |
+
"value": "600 - 960",
|
| 701 |
+
"english": "1110 - 1760 °F",
|
| 702 |
+
"comments": "Average value: 673 °C Grade Count:49",
|
| 703 |
+
"section": "Thermal Properties",
|
| 704 |
+
"test_condition": "",
|
| 705 |
+
"unit": "°C"
|
| 706 |
+
},
|
| 707 |
+
{
|
| 708 |
+
"property_name": "Haze",
|
| 709 |
+
"value": "2.00 - 4.00",
|
| 710 |
+
"english": "2.00 - 4.00 %",
|
| 711 |
+
"comments": "Average value: 2.74 % Grade Count:7",
|
| 712 |
+
"section": "Optical Properties",
|
| 713 |
+
"test_condition": "",
|
| 714 |
+
"unit": "%"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"property_name": "Gloss",
|
| 718 |
+
"value": "30.0 - 98.0",
|
| 719 |
+
"english": "30.0 - 98.0 %",
|
| 720 |
+
"comments": "Average value: 84.0 % Grade Count:57",
|
| 721 |
+
"section": "Optical Properties",
|
| 722 |
+
"test_condition": "",
|
| 723 |
+
"unit": "%"
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"property_name": "Yellow Index",
|
| 727 |
+
"value": "-1.40 - 24.3",
|
| 728 |
+
"english": "-1.40 - 24.3 %",
|
| 729 |
+
"comments": "Average value: 14.2 % Grade Count:5",
|
| 730 |
+
"section": "Optical Properties",
|
| 731 |
+
"test_condition": "",
|
| 732 |
+
"unit": "%"
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"property_name": "Transmission, Visible",
|
| 736 |
+
"value": "0.000 - 90.0",
|
| 737 |
+
"english": "0.000 - 90.0 %",
|
| 738 |
+
"comments": "Average value: 68.8 % Grade Count:51",
|
| 739 |
+
"section": "Optical Properties",
|
| 740 |
+
"test_condition": "",
|
| 741 |
+
"unit": "%"
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"property_name": "Processing Temperature",
|
| 745 |
+
"value": "170 - 270",
|
| 746 |
+
"english": "338 - 518 °F",
|
| 747 |
+
"comments": "Average value: 212 °C Grade Count:87",
|
| 748 |
+
"section": "Processing Properties",
|
| 749 |
+
"test_condition": "",
|
| 750 |
+
"unit": "°C"
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"property_name": "Nozzle Temperature",
|
| 754 |
+
"value": "180 - 310",
|
| 755 |
+
"english": "356 - 590 °F",
|
| 756 |
+
"comments": "Average value: 238 °C Grade Count:172",
|
| 757 |
+
"section": "Processing Properties",
|
| 758 |
+
"test_condition": "",
|
| 759 |
+
"unit": "°C"
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"property_name": "Adapter Temperature",
|
| 763 |
+
"value": "200 - 300",
|
| 764 |
+
"english": "392 - 572 °F",
|
| 765 |
+
"comments": "Average value: 277 °C Grade Count:31",
|
| 766 |
+
"section": "Processing Properties",
|
| 767 |
+
"test_condition": "",
|
| 768 |
+
"unit": "°C"
|
| 769 |
+
},
|
| 770 |
+
{
|
| 771 |
+
"property_name": "Die Temperature",
|
| 772 |
+
"value": "200 - 295",
|
| 773 |
+
"english": "392 - 563 °F",
|
| 774 |
+
"comments": "Average value: 267 °C Grade Count:31",
|
| 775 |
+
"section": "Processing Properties",
|
| 776 |
+
"test_condition": "",
|
| 777 |
+
"unit": "°C"
|
| 778 |
+
},
|
| 779 |
+
{
|
| 780 |
+
"property_name": "Melt Temperature",
|
| 781 |
+
"value": "149 - 323",
|
| 782 |
+
"english": "300 - 613 °F",
|
| 783 |
+
"comments": "Average value: 234 °C Grade Count:315",
|
| 784 |
+
"section": "Processing Properties",
|
| 785 |
+
"test_condition": "",
|
| 786 |
+
"unit": "°C"
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"property_name": "Mold Temperature",
|
| 790 |
+
"value": "10.0 - 120",
|
| 791 |
+
"english": "50.0 - 248 °F",
|
| 792 |
+
"comments": "Average value: 62.3 °C Grade Count:377",
|
| 793 |
+
"section": "Processing Properties",
|
| 794 |
+
"test_condition": "",
|
| 795 |
+
"unit": "°C"
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"property_name": "Injection Velocity",
|
| 799 |
+
"value": "200 - 240",
|
| 800 |
+
"english": "7.87 - 9.45 in/sec",
|
| 801 |
+
"comments": "Average value: 232 mm/sec Grade Count:30",
|
| 802 |
+
"section": "Processing Properties",
|
| 803 |
+
"test_condition": "",
|
| 804 |
+
"unit": "mm/sec"
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"property_name": "Roll Temperature",
|
| 808 |
+
"value": "60.0 - 150",
|
| 809 |
+
"english": "140 - 302 °F",
|
| 810 |
+
"comments": "Average value: 127 °C Grade Count:29",
|
| 811 |
+
"section": "Processing Properties",
|
| 812 |
+
"test_condition": "",
|
| 813 |
+
"unit": "°C"
|
| 814 |
+
},
|
| 815 |
+
{
|
| 816 |
+
"property_name": "Drying Temperature",
|
| 817 |
+
"value": "60.0 - 120",
|
| 818 |
+
"english": "140 - 248 °F",
|
| 819 |
+
"comments": "Average value: 84.2 °C Grade Count:381",
|
| 820 |
+
"section": "Processing Properties",
|
| 821 |
+
"test_condition": "",
|
| 822 |
+
"unit": "°C"
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"property_name": "Moisture Content",
|
| 826 |
+
"value": "0.0100 - 0.300",
|
| 827 |
+
"english": "0.0100 - 0.300 %",
|
| 828 |
+
"comments": "Average value: 0.0668 % Grade Count:115",
|
| 829 |
+
"section": "Processing Properties",
|
| 830 |
+
"test_condition": "",
|
| 831 |
+
"unit": "%"
|
| 832 |
+
},
|
| 833 |
+
{
|
| 834 |
+
"property_name": "Dew Point",
|
| 835 |
+
"value": "-29.0 - 17.8",
|
| 836 |
+
"english": "-20.2 - 0.000 °F",
|
| 837 |
+
"comments": "Average value: -19.6 °C Grade Count:6",
|
| 838 |
+
"section": "Processing Properties",
|
| 839 |
+
"test_condition": "",
|
| 840 |
+
"unit": "°C"
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"property_name": "Injection Pressure",
|
| 844 |
+
"value": "4.14 - 130",
|
| 845 |
+
"english": "600 - 18900 psi",
|
| 846 |
+
"comments": "Average value: 56.9 MPa Grade Count:35",
|
| 847 |
+
"section": "Processing Properties",
|
| 848 |
+
"test_condition": "",
|
| 849 |
+
"unit": "MPa"
|
| 850 |
+
},
|
| 851 |
+
{
|
| 852 |
+
"property_name": "Vent Depth",
|
| 853 |
+
"value": "0.00254 - 0.0510",
|
| 854 |
+
"english": "0.00100 - 0.0201 in",
|
| 855 |
+
"comments": "Average value: 0.0123 cm Grade Count:10",
|
| 856 |
+
"section": "Processing Properties",
|
| 857 |
+
"test_condition": "",
|
| 858 |
+
"unit": "cm"
|
| 859 |
+
}
|
| 860 |
+
]
|
| 861 |
+
}
|
src/data/data/Polymers_material_data.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/data/data/csv_out/Composites_material_data.xlsx
ADDED
|
Binary file (62.8 kB). View file
|
|
|
src/data/data/csv_out/Composites_material_data_old.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
src/data/data/csv_out/Sheet1.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|