Description Usage Arguments Details Value Examples
Creates a summary of coefficients and meta data of each data file passed in the through the svRunPaths argument.
1 |
svRunPaths |
optional string vector. Defaults to |
svRunNames |
optional string vector. Defaults to |
sSummaryExportFolder |
string. Defaults to |
Opens each raw data file using readTireData
(or a similar
function if the option tirefittingr.sfReadTireFile
is defined), then applies
the preprocess function defined in getOption("tirefittingr.sfPreProcess")
.
Using DEoptim::DEoptim()
, a differential evolution
optimization algorithm, the starting population of
parameters evolves to find those
that best represent the data. In post-processing, a comparison of the
fitted curve to the data is plotted.
To use presets, run setFYPure2002()
, setFYMF52()
, setFXPure2002.wIA()
,
setFXPure2002.NoIA()
, or setFXMF52()
before running fitTires()
.
See ?setFYPure2002
etc for more info.
Manually set with options("tirefittingr.exampleOption" = value)
. Use
?options
for more info.
To find out what an option is currently set as use
getOption("tirefittingr.exampleOption")
.
numeric. defaults to -Inf
Used for
removing the warmup from the start of a dataset. All data collected
before the tires reach this temperature will be ignored.
integer. defaults to 4000. Number of data points to use. Data will randomly sampled down to this many data point to speed up solve time.
integer. defaults to 300. Maximum number of iterations of the solver.
logical. defaults to TRUE
.
When preprocessing data for an FX fit, should the data be filtered
so that only datapoints with -1 < SA < 1 be left?
string. The name of the fitting
function to use. Pre-installed options are 'FYPurePacejka2002'
,
'FYPureMF52'
, 'FXPureMF52'
, 'FXPurePacejka2002.NoIA'
, and
'FXPurePacejka2002.wIA'
.
integer. defaults to 1. Number of
cores to use. Assign NA
to detect how many cores are available
string of a function name.
A plotting function to run after fitting to check quality of fit.
Pre-installed options are 'fFYPlot'
, 'fFXPlot'
.
logical. defaults to TRUE. TRUE also plots the run conditions.
string of a function name.
A preprocessing function to apply to the data before fitting.
Pre-installed options are 'FYPre'
, 'FXPre'
.
string of a function name. Defaults
to 'readTTCData'. Pre-installed options are 'readTTCData'
and
'readCSVTireData'
. Make your own by writing a
wrapper function for readTireData
.
The function must have one argument that is
the full path name of a raw data file, and must output a data frame.
See readTTCData
.
string. defaults to FALSE
. Entire path
of location to save the plot. FALSE
displays them in the RStudio
graphics window.
string of the name of a
data frame. A data frame of the starting population of Pacejka
coefficients. Pre-installed options are 'dfStartParFY'
,
and 'dfStartParFX'
.
logical. Defaults to TRUE
. False suppresses
most messages.
data frame. Summary of each raw data file that was fit along with parameters in alphabetical order.
1 2 3 4 5 6 | options("tirefittingr.iParallelCores" = 2)
setFYPure2002() # setFXPure2002.wIA()
## Not run:
dfFitSummary = fitTires()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.