cutoff_d: Calculate the vesicle size cutoff

Description Usage Arguments Details Value Examples

View source: R/cutoff_d.R

Description

Calculates the maximum vesicle size that is completely sedimented at a specified time and rcf. Units are noted in parentheses

Usage

1
2
cutoff_d(t, rcf, rotor, vesicle.density = 1.15, solvent.density = 1,
  viscosity = 0.0155)

Arguments

t

The centrifugation time (min).

rcf

The relative centrifugal force.

rotor

A rotor object, created with rotor().

vesicle.density

The vesicle density (g/cm^3).

solvent.density

The solvent density (g/cm^3).

viscosity

The viscosity of the solvent (g/(cm*s)).

Details

Calculates the maximum vesicle size that is fully sedimented in a centrifugation run. This can be thought of as a vesicle size cufoff for complete sedimentation.

The default value for vesicle.density is 1.15 g/cm^3, which is the most common exosome density in the literature.

The default solvent.density is 1.00 g/cm^3 and the default viscosity is 0.0155 g/(cm*s), which are respectively the density and viscosity of pure water.

Value

The cutoff vesicle size (nm)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# create a Beckman SW 40 Ti rotor object
sw40 <- rotor("sw40")

cutoff_d(t = 60, rcf = 10000, sw40)
cutoff_d(t = 60, rcf = 100000, sw40)


# Arguments can be of length > 1
cutoff_d(t = 1:100, rcf = 10000, sw40)
cutoff_d(t = 60, rcf = seq(100, 1000, by = 100), sw40)
cutoff_d(t = 1:10, rcf = seq(100, 1000, by = 100), sw40)

wfondrie/evrspin documentation built on May 4, 2019, 5:22 a.m.