diff --git a/NAMESPACE b/NAMESPACE index 0d2e6c0..f86561d 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -36,6 +36,7 @@ export(mogi.pressure) export(mogi.volume) export(poroelastic_stress_coefficient) export(r96_drainage_pressure) +export(rc76_edge_disloc_poro) export(rigid_hydraulic_diffusivity) export(rudnicki86) export(segall85) diff --git a/R/ricecleary76.R b/R/ricecleary76.R index 50abd56..b856314 100644 --- a/R/ricecleary76.R +++ b/R/ricecleary76.R @@ -1,3 +1,23 @@ +#' Rice and Cleary solutions +#' +#' @details \code{\link{rc76_edge_disloc_poro}} is the 2D solution +#' to an edge dislocation (e.g., fault) embedded in a poroelastic medium +#' +#' @param Times numeric; times to calculate at \code{depth} [s] +#' @param slip numeric; relative slip along the edge dislocation [m] +#' @param radial_dist numeric; distance from xxx to xxx [m] +#' @param angFromEast +#' @param diffusiv +#' @param nuu +#' @param nu +#' @param B +#' @param mu +#' @param ... +#' +#' @return +#' @export +#' +#' @examples rc76_edge_disloc_poro <- function(Times, slip, radial_dist, angFromEast=30, diffusiv=1, nuu=0.33, nu=0.25, B = 0.6, diff --git a/man/rc76_edge_disloc_poro.Rd b/man/rc76_edge_disloc_poro.Rd new file mode 100644 index 0000000..55208d2 --- /dev/null +++ b/man/rc76_edge_disloc_poro.Rd @@ -0,0 +1,50 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/ricecleary76.R +\name{rc76_edge_disloc_poro} +\alias{rc76_edge_disloc_poro} +\title{Rice and Cleary solutions} +\usage{ +rc76_edge_disloc_poro( + Times, + slip, + radial_dist, + angFromEast = 30, + diffusiv = 1, + nuu = 0.33, + nu = 0.25, + B = 0.6, + mu = 3e+10, + ... +) +} +\arguments{ +\item{Times}{numeric; times to calculate at \code{depth} [s]} + +\item{slip}{numeric; relative slip along the edge dislocation [m]} + +\item{radial_dist}{numeric; distance from xxx to xxx [m]} + +\item{angFromEast}{} + +\item{diffusiv}{} + +\item{nuu}{} + +\item{nu}{} + +\item{B}{} + +\item{mu}{} + +\item{...}{} +} +\value{ + +} +\description{ +Rice and Cleary solutions +} +\details{ +\code{\link{rc76_edge_disloc_poro}} is the 2D solution +to an edge dislocation (e.g., fault) embedded in a poroelastic medium +}