Learn R Programming

AeroSampleR (version 0.3.0)

set_params_1: Set parameters (not particle size specific)

Description

Make a set of parameters that will be used throughout this package. `set_params_1` sets all single parameters. `set_params_2` adds particle-size-dependent parameters to the particle distribution

Usage

set_params_1(D_tube_cm, Q_lpm, T_C = 20, P_kPa = 101.325)

Value

a data frame with singular parameters

examples params <- set_params_1("D_tube" = 2.54, "Q_lpm" = 100, "T_C" = 25, "P_kPa" = 101.325) t(params)

Arguments

D_tube_cm

Inside diameter of tubing in cm, no default

Q_lpm

System flow in lpm, no default

T_C

System temperature in Celsius

P_kPa

System pressure in kPa (Pa is the MKS unit)

Details

All parameters are to be in MKS units, except as noted.