EN

Silk Fibroin: From Molecular Structure to Mechanical Function

Why Silk?

Silk fibroin is one of nature’s most remarkable structural proteins. A single silkworm cocoon fiber combines high strength (~500 MPa), extensibility (~20% strain), and toughness exceeding Kevlar. Understanding how this performance emerges from molecular architecture is central to designing better protein-based materials.

Hierarchical Structure

Silk fibroin’s structure spans six orders of magnitude:

ScaleFeatureMechanical Role
--------------------------------
1-10 nmBeta-sheet crystallitesStiffness, crosslinking nodes
10-100 nmCrystalline/amorphous domainsToughness via sacrificial bonds
100 nm - 1 umNanofibrilsLoad distribution
1-10 umMicrofibrilsFiber unit
10-100 umSingle fiberBulk mechanical response

Molecular Composition

Bombyx mori silk fibroin consists of three chains:

  • Heavy chain (H-chain, ~390 kDa): Gly-Ala-Gly-Ala-Gly-Ser repeats forming beta-sheets
  • Light chain (L-chain, ~26 kDa): Disulfide-linked to H-chain
  • P25 glycoprotein: Maintains chain stoichiometry

# Simplified silk sequence analysis
def beta_sheet_content(sequence):
    """Estimate beta-sheet propensity from GAGAGS repeat density."""
    motif = "GAGAGS"
    count = sequence.count(motif)
    return count * len(motif) / len(sequence)

# Bombyx mori H-chain N-terminal domain (simplified)
bmori_hchain = "GAGAGSGAGAGSGAGAGSGAGAGSGAGAGS" * 100
print(f"Beta-sheet content: {beta_sheet_content(bmori_hchain):.1%}")

Beta-Sheet Crystallites

The (Gly-Ala-Gly-Ala-Gly-Ser)n repeats assemble into antiparallel beta-sheets. These crystallites act as physical crosslinks in an otherwise amorphous protein matrix. Key parameters:

  • Crystallite size: 2-6 nm (XRD)
  • Crystallinity index: 10-50% (varies with processing)
  • Inter-sheet distance: 0.35 nm (hydrogen bonding)
  • Inter-strand distance: 0.95 nm (van der Waals)

Mechanical Model: Two-Phase Composite

A simplified model treats silk as a composite of stiff crystallites in a soft matrix:


def silk_modulus(Vc, Ec=20, Ea=0.5):
    """Voigt (upper bound) estimate of silk modulus.
    Vc: crystalline volume fraction
    Ec: crystal modulus (GPa)
    Ea: amorphous modulus (GPa)
    """
    return Vc * Ec + (1 - Vc) * Ea

for Vc in [0.1, 0.2, 0.3, 0.4, 0.5]:
    print(f"Vc={Vc:.1f}: E={silk_modulus(Vc):.1f} GPa")

Processing-Structure-Property Relationships

Processing StepStructural ChangeProperty Change
---------------------------------------------------
Degumming (boiling)Removes sericin coatingFibers separate, slight stiffness loss
Dissolution (LiBr)Denatures protein, breaks H-bondsLoss of crystallinity
Methanol/ethanol treatmentInduces beta-sheet formationIncreases stiffness, reduces solubility
Water annealingSlow beta-sheet growthControlled crystallinity
Drawing/stretchingAligns molecular chainsIncreases strength and anisotropy

Practical Tips for Experimentalists

  1. Degumming time matters: Over-boiling degrades the H-chain, reducing mechanical properties
  2. Ethanol vs methanol: Both induce beta-sheets; ethanol is slower but gentler
  3. Water content: Silk’s mechanical properties are strongly humidity-dependent—always report RH%
  4. AFM characterization: Use PeakForce QNM mode for nanoscale modulus mapping on silk films
  5. Regenerated vs native: Regenerated silk rarely matches native fiber mechanics—focus on processing optimization

References

  • Keten, S. et al. (2010). Nanoconfinement controls stiffness, strength and toughness of beta-sheet crystals in silk. Nature Materials, 9, 359-367.
  • Nova, A. et al. (2010). Molecular and nanoscale contributors to the mechanical response of spider silk. Nano Letters, 10(7), 2626-2634.
  • Omenetto, F.G. & Kaplan, D.L. (2010). New opportunities for an ancient material. Science, 329(5991), 528-531.

💬 Questions or Feedback?

This blog is actively maintained by a PhD researcher. Reach out on GitHub for collaborations or corrections.

View on GitHub