PumpingTestDataLoad: Pupming Test Data

Description Usage Arguments Value Examples

View source: R/PumpingTestDataLoad.R

Description

Setting the information about the evaluated pumping test into basic list. Current Well test seted for stehfest algorithm on Laplace tranform for isotropic medium aquifers with radial flow.

Usage

1
2
3
PumpingTestDataLoad(Q = NA, Storativity = NA, Transmisivity = NA,
  Radius = NA, Time = NA, DrawDown = NA,
  WellTestType = "IsotropicMediumBesselR")

Arguments

Q

pumping test rate [m3/s]

Storativity

aquifer storativity [-]

Transmisivity

aquifer tranmisivity [m2/s]

Radius

well radius [m]

Time

numeric vector time intervals of puming test [s]

DrawDown

numeric vector drawdown recorded for each time of pupmping test [m]

WellTestType

the identifier of type of well test , "IsotropicMediumBesselR" stands for transient radial flow and skin effect to isotropic aquifer with R bessels functions

Value

list of pumpiming test data

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# Pumped well discharge rate [m3/s]
Q=0.0045
# Aquifer Transmisivity [m2/s]
Transm=0.012
# Well radius [m]
Rv=1.2
# Storativity [-]
STRR=0.0001
# Time [s]
T = c( 1.88,2.36,2.97,3.74,4.71,5.93,7.46,9.40,11.83,14.89)
# Dimesionles time [-]
TD=T*Transm/Rv/Rv/STRR
# Well drawdown during pumping test [m]
S =c(0.006,0.008,0.010,0.012,0.015,0.019,0.024,0.03,0.038,0.047)
Kytlice_2018_15_05 = PumpingTestDataLoad(Q=Q,Storativity = STRR,
Transmisivity = Transm,Radius = Rv,Time = T,DrawDown = S,WellTestType = "IsotropicMediumBesselR")

petrmaca/GTest documentation built on May 29, 2019, 11:44 a.m.