plots the Mohr Circle
Usage
Mohr_plot(
sigmaX = NA,
sigmaZ = NA,
tauXZ = NA,
sigma1 = NA,
sigma3 = NA,
unit = "MPa",
col = "black",
...
)
Arguments
- sigmaX
numeric. Magnitude of normal stress acting in the horizontal direction
- sigmaZ
numeric. Magnitude of normal stress acting in the vertical direction
- tauXZ
numeric. Magnitude of shear stress acting on the same plane as
"sigmaX"
- sigma1
numeric. Magnitude of major principal stress
- sigma3
numeric. Magnitude of minor principal stress
- unit
character. The unit used for magnitude of stress (
"MPa"
by default).- col
color for Mohr circle.
- ...
optional graphical parameters.
Note
One of the following two sets of data must be entered
"sigmaX"
,"sigmaZ"
,"tauXZ"
"sigma1"
,"sigma3"
Examples
Mohr_plot(sigmaX = 80, sigmaZ = 120, unit = "kPa", tauXZ = 20, col = '#B63679', lwd = 2)
#> Error: 'ines' is not an exported object from 'namespace:graphics'
Mohr_plot(sigma1 = 1025, sigma3 = 250, col = '#B63679', lwd = 2)
#> Error: 'ines' is not an exported object from 'namespace:graphics'