Function to calculate the hydraulic parameters of the Boulton model
boulton_calculate_parameters(ptest, par, hydraulic = TRUE)
ptest | A pumping_test object |
---|---|
par | List with the parameters a (slope), t0 and t1 are the intercepts of the straight line fitted to the drawdown using the Cooper-Jacob method for early and late times respectively. |
hydraulic | Logical flag to indicate if hydraulic parameters are calculated. If False, the the statistcal parameter are calculated. |
A list with the values of transmisivity (Tr), storage coefficient(Ss), Drainage Porosity (omegad) and radius of influence (radius_influence)
Boulton, N. The drawdown of the water-table under non-steady conditions near a pumped well in an unconfined formation. Proceedings of the Institution of Civil Engineers, 1954, 3, 564-579
Other boulton functions: boulton_WF_LT
,
boulton_solution_dlogt
,
boulton_solution
,
boulton_well_function
data(boulton) ptest <- pumping_test("Well1", Q = 0.03, r = 20, t = boulton$t, s = boulton$s) boulton_sol0 <- boulton_solution_initial(ptest) boulton.par <- boulton_calculate_parameters(ptest, boulton_sol0)