mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@8426 1feff8c3-07ed-0310-ac33-dd36852eb9cd
48 lines
968 B
R
48 lines
968 B
R
\name{phrGetErrorString}
|
|
\alias{phrGetErrorString}
|
|
\title{
|
|
Return error string
|
|
}
|
|
\description{
|
|
|
|
phrGetErrorString executes a phreeqc run
|
|
}
|
|
\synopsis{
|
|
phrGetErrorString()
|
|
}
|
|
\usage{
|
|
phrGetErrorString()
|
|
}
|
|
\arguments{
|
|
} %END arguments
|
|
\details{
|
|
|
|
Any details about the operation of this function should go here.
|
|
} %END details
|
|
\value{
|
|
This function returns the errors that occured during the previous
|
|
phrReadDB, phrRun, phrRunFile call.
|
|
}
|
|
\references{
|
|
Literature references and web URLs can go here.
|
|
}
|
|
\author{
|
|
Scott Charlton <charlton@usgs.gov>
|
|
|
|
Lopaka(Rob) Lee <rclee@usgs.gov>
|
|
}
|
|
\seealso{
|
|
\code{\link{phrReadString}},
|
|
\code{\link{phrRun}},
|
|
\code{\link{phrRunFile}},
|
|
\code{\link{phrGetSelectedOutput}}
|
|
}
|
|
|
|
\examples{
|
|
# loaddatabase should fail
|
|
n <- try(phrLoadDatabase("missing.dat"), silent = TRUE)
|
|
# if n is non-NULL display error string
|
|
if (!is.null(n)) phrGetErrorString()
|
|
}
|
|
\keyword{interface}
|