Description Usage Arguments Value Examples
Generate a list of estimates for the Arps decline model according to the class of 'decline_fit_lst' and 'time_lst' objects
1 | decline_fit(decline_fit_lst, time_lst)
|
decline_fit_lst |
a list object of class 'decline_fit' |
time_lst |
a list object of class 'time' |
a list of estimates for the parameters of the Arps model according to the class of 'decline_fit_lst' and 'time_lst' objects
1 2 3 4 5 6 7 8 9 | dcl_time_hyp <- decline_time(1:10000, unit = "day")
prod_data <- 4500 / (1 + 0.002 * 0.834 * dcl_time_hyp$t) ^ (1 / 0.834)
dcl_fit_param_hyp <- decline_fit_param(input_unit = "Field", output_unit = "Field",
fluid = "gas", model = "hyperbolic", fit_data = "rate", prod_data = prod_data,
initial_param = c(1000, 0.01, 1.0), lower = c(0, 1e-6, 1e-6), upper = NULL,
control = list(maxiter = 100))
dcl_fit_hyp <- decline_fit(dcl_fit_param_hyp, dcl_time_hyp)
dcl_fit_hyp
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.