| proctor_fit | R Documentation | 
maturing \loadmathjax The compaction curve is fit using a natural cubic spline and optimized to find D_{max} and w_{opt}.
proctor_fit(df, spline_degree = 3)
df | 
 A tibble containing raw compaction data containing (at a minimum)
columns   | 
spline_degree | 
 The number of terms in each piece-wise polynomial spline (defaults to 3). May not exceed more than n-1 where n is the number of compaction cylinders tested.  | 
The values of \mjseqnw_opt and \mjseqn\rho_max are computed
by an optimization of the the spline function, see stats::optimize().
A list with 5 elements:
physical_props a tibble containing the cylinder number, the water content,
and the computed physical properties for each specimen:
moist density
dry density
total porosity
void ratio
effective saturation
Note: porosity is calculated using the specific gravity contained in
the required Gs column of the data frame passed via df.
proctor_model S3 object returned by a call to lm
proctor_function R bytecode function derived from proctor_model
w_opt The optimum water content for the present compaction effort
d_max The maximum dry density for the present compaction effort
Proctor, 1932. Description of field and laboratory methods. _Eng. News Record-, 110:10, p. 286-289.
Standard effort: ASTM D698-12e2
Modified effort: ASTM D1557-12e1
generate_proctor_datasheet(), proctor_prep(), mix_calcs(), stats::optimize()
std_eff <- dplyr::filter(example_proctor_data, compaction_effort == 'standard') %>% add_physical_properties() proctor_fit(std_eff)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.