R/getStd.R

Defines functions getStd

Documented in getStd

#'
#'@title Get a TCSAM2015 std object by reading a .std file
#'
#'@description Function to get a TCSAM2015 std object by reading a .std file
#'
#'@param stdFile - std file from a TCSAM2015 model run. can be NULL.
#'
#'@return std model object (a list). The returned object will be a list of class 'tcsam2015.std'.
#'
#'@details If \code{stdFile} is NULL, the user will be prompted to identify a 
#'TCSAM2015 model report file from which to source the results object.
#'The returned object will be a list of class 'tcsam2015.std'.
#'
#'@export
#'
getStd<-function(stdFile){
    stdObj<-readStdFile(stdFile);
    return(stdObj);
}
wStockhausen/rTCSAM2015 documentation built on May 3, 2019, 7:14 p.m.