TMM4175 Polymer Composites

Home About Python Links Next Previous Table of Contents

Basic strength parameters

The term basic strength parameters is used for orthotropic materials and includes:

  • $X_T$ : Tensile failure strength, 1-direction ($\sigma_1>0$)

  • $X_C$ : Compressive failure strength, 1-direction ($\sigma_1<0$)

  • $Y_T$ : Tensile failure strength, 2-direction ($\sigma_2>0$)

  • $Y_C$ : Compressive failure strength, 2-direction ($\sigma_2<0$)

  • $Z_T$ : Tensile failure strength, 3-direction ($\sigma_3>0$)

  • $Z_C$ : Compressive failure strength, 3-direction ($\sigma_3<0$)

  • $S_{12}$ : Shear failure strength, 1-2-plane ( $|\tau_{12}|$ )

  • $S_{13}$ : Shear failure strength, 1-3-plane ( $|\tau_{13}|$)

  • $S_{23}$ : Shear failure strength, 2-3-plane ( $|\tau_{23}|$)

There are no universal agreement on the nomenclature for the basic strength parameters. In the literature we find symbols all over the place, where every textbook and paper seems to have invented its own. The nomenclature in this compendium follows [1] with the exception of the shear strengths (those symbols were already occupied, and after all, it is a tradition to come up with variations).

This is the time to show up in the lecture, join the discussion on all the details and the nuances, and look at stress-strain curves and images of failed specimen. We will also briefly connect this topic to later topics on testing and material variability, and initially it can be useful to take a brief look at Material variability and characteristic strength

UD fiber composites

UD fiber composites are usually considered to be transversely isotropic and the number of independent strength parameters is reduced. When the 2-3 plane is the plane of isotropy,

$$ Z_T = Y_T \\ Z_C = Y_C \\ S_{13} = S_{12} $$

Using absolute values

Note that the parameters for compressive strengths are implemented using the positive, or absolut value as in the following example:

In [1]:
m =  {"name": "E-glass/Epoxy", "units": "MPa-mm-Mg", "type": "UD", "fiber": "E-glass",
     "Vf": 0.55, "rho": 2000E-12,
     "description": "Typical UD E-glass/Epoxy from TMM4175",  
     "E1": 40000, "E2": 10000, "E3": 10000, 
     "v12": 0.3, "v13": 0.3, "v23": 0.4, 
     "G12": 3800, "G13": 3800, "G23": 3400, 
     "a1": 7e-06, "a2": 2.2e-05, "a3": 2.2e-05, 
     "XT": 1000, "YT": 40, "ZT": 40,
     "XC": 700, "YC": 120, "ZC": 120,
     "S12": 70, "S13": 70, "S23": 40,
     "f12":-0.5, "f13":-0.5, "f23":-0.5}

Obviously, when comparing a compressive stress to the corresponding material strength, we must take care of the sign during the calculation:

In [2]:
s1 = - 200   # normal stress in the 1-direction

if s1 > 0:
    R = m['XT']/s1     # use tensile strength
else:
    R = -m['XC']/s1    # use compressive strength with negative sign

print('Strength to load ratio is',R)
Strength to load ratio is 3.5

Alternative, simpler code:

In [3]:
R=max(m['XT']/s1, -m['XC']/s1)

print('Strength to load ratio is',R)
Strength to load ratio is 3.5

References and further readings

  1. Herakovich, Carl T. Mechanics of Fibrous Composites. New York: Wiley, 1998.

Disclaimer:This site is about polymer composites, designed for educational purposes. Consumption and use of any sort & kind is solely at your own risk.
Fair use: I spent some time making all the pages, and even the figures and illustrations are my own creations. Obviously, you may steal whatever you find useful here, but please show decency and give some acknowledgment if or when copying. Thanks! Contact me: nils.p.vedvik@ntnu.no www.ntnu.edu/employees/nils.p.vedvik

Copyright 2021, All right reserved, I guess.