Skip to contents

calculates the magnitudes of the normal stress and the shear stress

Usage

sigmaTrans(
  theta,
  sigmaX = NA,
  sigmaZ = NA,
  tauXZ = NA,
  sigma1 = NA,
  sigma3 = NA
)

Arguments

theta

angle of inclination (degrees)

sigmaX

normal stress acting in the horizontal direction

sigmaZ

normal stress acting in the vertical direction

tauXZ

shear stress acting on the same plane as "sigmaX"

sigma1

major principal stress

sigma3

minor principal stress

Value

A two-element list containing

"sigma"

normal stress on an inclined plane

"tau"

shear stress on an inclined plane

Note

In addition to theta, One of the following two sets of data must be entered:

  1. "sigmaX", "sigmaZ", "tauXZ"

  2. "sigma1", "sigma3"

If theta is entered in conjunction with "sigmaX", "sigmaZ", and "tauXZ", it is interpreted as the angle of inclination above the horizontal. If theta is entered in conjunction with the principal stresses, then it is interpreted as the angle of inclination above the major principal plane.

Author

Kyle Elmy and Jim Kaklamanos

Examples

sigmaTrans(sigmaX = 80, sigmaZ = 120, tauXZ = 20, theta = 78)
#> $sigma
#> [1] 89.86382
#> 
#> $tau
#> [1] 26.40564
#>