What I do
- Explain polymer structure and properties
- Describe polymerization mechanisms
- Discuss polymer classification
- Analyze polymer applications
- Explain polymer processing
- Connect structure to properties
When to use me
- When learning polymer basics
- When explaining polymer properties
- When selecting materials
- When preparing educational content
Key Concepts
Polymer Classification
Origin
- Natural: Cellulose, starch, proteins, DNA
- Synthetic: Nylon, polyethylene, polystyrene
- Semi-synthetic: Cellulose nitrate
Structure
- Linear: Single chain
- Branched: Side chains
- Crosslinked: Network
- Dendrimers: Hyperbranched
Polymer Structure
# Polymer types by thermal behavior
polymer_types = {
'thermoplastics': 'Soften on heating (PE, PP, PVC)',
'thermosets': 'Crosslink on heating (epoxy, phenol-formaldehyde)',
'elastomers': 'Elastic deformation (rubber, silicone)'
}
# Amorphous vs Crystalline
structure_types = {
'amorphous': 'Random coil, no order (glass below Tg)',
'semicrystalline': 'Ordered regions in amorphous matrix (Tm > Tg)',
'crystalline': 'Highly ordered (rare in polymers)'
}
Mechanical Properties
- Tensile strength
- Elastic modulus
- Elongation at break
- Impact resistance
- Hardness
- Creep resistance
Common Applications
- Packaging: PE, PP, PET
- Fibers: Nylon, polyester
- Coatings: Acrylics, epoxies
- Adhesives: PVA, cyanoacrylate
- Elastomers: Natural rubber, silicone
1---2name: polymer3description: Polymer science fundamentals4license: MIT5---67## What I do89- Explain polymer structure and properties10- Describe polymerization mechanisms11- Discuss polymer classification12- Analyze polymer applications13- Explain polymer processing14- Connect structure to properties1516## When to use me1718- When learning polymer basics19- When explaining polymer properties20- When selecting materials21- When preparing educational content2223## Key Concepts2425### Polymer Classification2627**Origin**28- Natural: Cellulose, starch, proteins, DNA29- Synthetic: Nylon, polyethylene, polystyrene30- Semi-synthetic: Cellulose nitrate3132**Structure**33- Linear: Single chain34- Branched: Side chains35- Crosslinked: Network36- Dendrimers: Hyperbranched3738### Polymer Structure3940```python41# Polymer types by thermal behavior42polymer_types = {43 'thermoplastics': 'Soften on heating (PE, PP, PVC)',44 'thermosets': 'Crosslink on heating (epoxy, phenol-formaldehyde)',45 'elastomers': 'Elastic deformation (rubber, silicone)'46}4748# Amorphous vs Crystalline49structure_types = {50 'amorphous': 'Random coil, no order (glass below Tg)',51 'semicrystalline': 'Ordered regions in amorphous matrix (Tm > Tg)',52 'crystalline': 'Highly ordered (rare in polymers)'53}54```5556### Mechanical Properties5758- Tensile strength59- Elastic modulus60- Elongation at break61- Impact resistance62- Hardness63- Creep resistance6465### Common Applications6667- Packaging: PE, PP, PET68- Fibers: Nylon, polyester69- Coatings: Acrylics, epoxies70- Adhesives: PVA, cyanoacrylate71- Elastomers: Natural rubber, silicone