calculates the magnitude and direction of the maximum in-plane shear stress
Value
A two-element list containing
"tauMax"
maximum in-plane shear stress
"theta"
angle of maximum in-plane shear stress (in degrees)
Examples
tau_max(sigma_x = 80, sigma_z = 120, tau_xz = 20)
#> $tau_max
#> function (sigma_x, sigma_z, tau_xz)
#> {
#> tauMax <- sqrt((((sigma_z - sigma_x)/2)^2) + ((tau_xz)^2))
#> x <- (1/(1 + ((2 * tau_xz)/(sigma_z - sigma_x))^2))
#> theta1 <- acosd(sqrt(x))/2
#> theta <- theta1 + 45
#> return(list(tau_max = tau_max, theta = theta))
#> }
#> <bytecode: 0x55e93e0fa410>
#> <environment: namespace:structr>
#>
#> $theta
#> [1] 67.5
#>