R/Standing-Katz.R
listStandingKatzCurves.Rd
List all Standing-Katz curve files available at Low and High pressures
listStandingKatzCurves(pprRange = "lp")
pprRange | Takes one of three values: "lp": low pressure, or "hp" for high pressure, or 'all' for all the curve text files. The text files reside under extdata. High pressure is considered above a Ppr > 8. |
---|
listStandingKatzCurves(pprRange = 'all') # list all curves#> [1] "sk_hp_tpr_105.txt" "sk_hp_tpr_110.txt" "sk_hp_tpr_120.txt" #> [4] "sk_hp_tpr_130.txt" "sk_hp_tpr_140.txt" "sk_hp_tpr_150.txt" #> [7] "sk_hp_tpr_170.txt" "sk_hp_tpr_200.txt" "sk_hp_tpr_220.txt" #> [10] "sk_hp_tpr_240.txt" "sk_hp_tpr_260.txt" "sk_hp_tpr_300.txt" #> [13] "sk_lp_tpr_105.txt" "sk_lp_tpr_110.txt" "sk_lp_tpr_120.txt" #> [16] "sk_lp_tpr_130.txt" "sk_lp_tpr_140.txt" "sk_lp_tpr_150.txt" #> [19] "sk_lp_tpr_160.txt" "sk_lp_tpr_170.txt" "sk_lp_tpr_180.txt" #> [22] "sk_lp_tpr_190.txt" "sk_lp_tpr_200.txt" "sk_lp_tpr_220.txt" #> [25] "sk_lp_tpr_240.txt" "sk_lp_tpr_260.txt" "sk_lp_tpr_280.txt" #> [28] "sk_lp_tpr_300.txt"listStandingKatzCurves(pprRange = 'lp') # list all the Tpr for low-pressure#> [1] "sk_lp_tpr_105.txt" "sk_lp_tpr_110.txt" "sk_lp_tpr_120.txt" #> [4] "sk_lp_tpr_130.txt" "sk_lp_tpr_140.txt" "sk_lp_tpr_150.txt" #> [7] "sk_lp_tpr_160.txt" "sk_lp_tpr_170.txt" "sk_lp_tpr_180.txt" #> [10] "sk_lp_tpr_190.txt" "sk_lp_tpr_200.txt" "sk_lp_tpr_220.txt" #> [13] "sk_lp_tpr_240.txt" "sk_lp_tpr_260.txt" "sk_lp_tpr_280.txt" #> [16] "sk_lp_tpr_300.txt"#' listStandingKatzCurves(pprRange = 'hp') # list all the Tpr for high-pressure