Description Usage Arguments Details Value Examples
Calculates the maximum vesicle size that is completely sedimented at a specified time and rcf. Units are noted in parentheses
1 2  | 
t | 
 The centrifugation time (min).  | 
rcf | 
 The relative centrifugal force.  | 
rotor | 
 A rotor object, created with   | 
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)).  | 
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.
The cutoff vesicle size (nm)
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)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.