This function returns a list with the hydraulic or fit parameters of a specific analytical solution.

model.parameters(model, hydraulic = TRUE)

Arguments

model

A character string specifying the analytical model.

hydraulic

A logical flag indicating the type of parameters to return (TRUE for hydraulic, FALSE for fit parameters)

Value

A list with the corresponding hydraulic or fit parameters.

See also

Other base functions: additional.parameters<-, confint.pumping_test, confint_bootstrap, confint_jackniffe, confint_wald, estimated<-, evaluate, fit.optimization, fit.parameters<-, fit.sampling, fit, hydraulic.parameter.names<-, hydraulic.parameters<-, model<-, plot.pumping_test, plot_model_diagnostic, plot_sample_influence, plot_uncert, print.pumping_test, pumping_test, simulate, summary.pumping_test

Examples

model <- 'theis' # Hydraulic parameters of the Theis model print(model.parameters(model))
#> [1] "Tr" "Ss"
# Fit parameters of the Theis model print(model.parameters(model, FALSE))
#> [1] "a" "t0"