alpha_constants {kitagawa} | R Documentation |
Calculate any constants depending on effective stress coefficient
Description
This function accesses the appropriate method to calculate the
-dependent constant associated with the choice of
c.type
.
There are currently four such constants, which correspond to
Equations 10, 11, 18, 19 in Kitagawa et al (2011).
This function is not likely to be needed by the user.
Usage
alpha_constants(alpha = 0, c.type = c("Phi", "Psi", "A", "Kel"))
## Default S3 method:
alpha_constants(alpha = 0, c.type = c("Phi", "Psi", "A", "Kel"))
Arguments
alpha |
the constant alpha (see |
c.type |
the constant to calculate |
Details
What is "alpha"
?
The constant is a function of frequency
as well
as aquifer and well parameters; it is formally defined as
where is the storativity,
is the aquifer's effective
transmissivity, and
is the radius of the screened portion
of the well.
What is calculated?
The various constants which may be calculated with this function are
Phi
Given as
in Eqn. 10
Psi
Given as
in Eqn. 11
A
Given as
in Eqns. 18, 19
Kel
The complex Kelvin functions (see Abramowitz and Stegun, 1972)
Value
Complex matrix having values representing the constant
represented by c.type
,
as well as any other -dependent constants
which are needed in the computation.
Author(s)
A. J. Barbour <andy.barbour@gmail.com>
See Also
omega_constants
, well_response
Other ConstantsCalculators:
kitagawa-constants
,
omega_constants()
Examples
alpha_constants() # kelvin::Keir gives warning
alpha_constants(1) # defaults to constant 'Phi' (note output also has Kel)
alpha_constants(1:10, c.type="A") # constant 'A' (again, note output)