Abstract
Computer simulation plays a growing role in the design of microfluidic chips. However, the particle tracers in some existing commercial computational fluid dynamics software are not well suited for accurately simulating the trajectories of particles such as cells, microbeads, and droplets in microfluidic systems. To address this issue, we present a microfluidics-optimized particle simulation algorithm (MOPSA) that simulates the trajectories of cells, droplets, and other particles in microfluidic chips with more lifelike results than particle tracers in existing commercial software. When calculating the velocity of a particle, MOPSA treats the particle as a two-dimensional rigid circular object instead of a single point. MOPSA also checks for unrealistic interactions between particles and channel walls and applies an empirical correcting function to eliminate these errors. To validate the performance of MOPSA, we used it to simulate a variety of important features of microfluidic devices like channel intersections and deterministic lateral displacement (DLD) particle sorter chips. MOPSA successfully predicted that different particle sizes will have different trajectories in six published DLD experiments from three research groups; these DLD chips were used to sort a variety of different cells, particles, and droplets. While some of these particles are not actually rigid or spherical, MOPSA's approximation of these particles as rigid spheres nonetheless resulted in lifelike simulations of the behaviors of these particles (at least for the particle sizes and types shown here). In contrast, existing commercial software failed to replicate these experiments. Finally, to demonstrate that MOPSA can be extended to simulate other properties of particles, we added support for simulating particle density to MOPSA and then used MOPSA to simulate the operation of a microfluidic chip capable of sorting cells by their density. By enabling researchers to accurately simulate the behavior of some types of particles in microfluidic chips before fabricating the chips, MOPSA should accelerate the development of new microfluidic devices for important applications.
I. INTRODUCTION
The field of lab-on-a-chip and micro total analysis devices has been growing rapidly for nearly 40 years,1 and microfluidic chips have found important applications in biological and chemical analyses. Many of these chips contain particles such as cells, microbeads, or droplets. For example, microfluidic cell sorters are emerging as powerful tools for point-of-care testing and biological research.2,3
As the variety of microfluidic devices increases, computer-based simulations of microfluidics have become more important.4–6 Microfluidics researchers are increasingly using finite element analysis (FEA) software such as COMSOL Multiphysics (COMSOL Inc., Burlington, MA), Autodesk CFD (Autodesk Inc., Venice, CA), and Fluent (ANSYS Inc., Canonsburg, PA) to simulate and optimize their microfluidic chip designs. These software tools excel at calculating the fluid velocity field in a chip. However, these tools are not well suited for simulating the behavior of particles like cells, beads, and droplets flowing in microfluidic chips. For example, Fig. 1 shows the results from using COMSOL Multiphysics to simulate the behavior of a deterministic lateral displacement (DLD) cell sorter. DLD sorters use arrays of micron-scale posts to sort cells based on their size. As cells flow through the chip and interact with the posts, large and small cells follow different paths and are therefore separated by the chip.7,8 However, in the simulation results from COMSOL Multiphysics in Fig. 1, the larger 10 μm cells (red) and smaller 3 μm cells (green) follow exactly the same trajectory. If the simulation were accurate, the cells would have followed different trajectories. Additionally, by zooming in to the simulation results in Fig. 1(a), we see that the 10 μm cell actually overlaps with the wall of a triangular post (an impossible situation). These observations confirm that the particle tracing algorithm in COMSOL Multiphysics treats the particle as a mathematical point with no area or volume, an assumption that can be acceptable in macro-scale physics but not in microfluidics. This assumption leads to additional problems: if the simulated single-point particle in COMSOL Multiphysics is located on a mesh node with a fluid velocity magnitude of zero, the particle will remain stuck at that location forever [Fig. 1(b)]. This sticking behavior remains regardless of which boundary condition is chosen for the wall in COMSOL Multiphysics (freeze, stick, bounce, disappear, or reflect diffusely).
FIG. 1.
Results from using the commercial finite element analysis software COMSOL Multiphysics to simulate the behavior of two sizes of cells flowing through a deterministic lateral displacement (DLD) microfluidic cell sorter chip containing an array of triangular posts. While this DLD chip was designed to separate cells based on size, in this simulation the small cell (3 μm diameter; green) and large cell (10 μm; red) follow exactly the same trajectory and are not separated. Additionally, the simulated cells sometimes impossibly overlap the chip's triangular posts (a) or stick permanently (b). Deficiencies like these make it difficult to accurately simulate flowing cells and other particles in microfluidics using existing commercial software tools.
The lack of commercial software tools that accurately simulate particles in microfluidics has profound consequences. For example, researchers developing new cell sorters like the DLD cell sorter shown in Fig. 1 typically have to fabricate and test these chips to determine whether they sort the desired cells. While some empirical models for predicting the sorting behavior of DLD chips do exist for chips with cylindrical posts,9 these models do not easily extend to posts with arbitrary shapes like the triangles shown in Fig. 1. And with each chip design iteration requiring fabrication and testing in the lab, it can take months for researchers to develop a functional device. This slows the progress of research and keeps valuable research tools and lifesaving medical diagnostics out of the hands of the people who need them.
To address this problem, we developed a microfluidics-optimized particle simulation algorithm (MOPSA) that is capable of simulating lifelike trajectories for some particles in situations where existing software tools fail. MOPSA treats a particle as a 2D rigid circular object instead of a single point when calculating the particle's velocity. MOPSA also checks whether the particle overlaps a solid object (a post or channel wall) at each simulated time step. If overlap is detected, MOPSA applies an empirical correcting function, wallEffect, to shift the particle to a new position where it will not overlap walls. By providing researchers with accurate simulations of some types of particles in microfluidic devices, MOPSA should accelerate the development of new microfluidic devices for important applications in biological research, medical diagnostics, and beyond.
Assuming that a particle is a rigid circle means that MOPSA cannot directly simulate the deformability or non-spherical shapes of some particles. In spite of this limitation, by assuming that the particles are rigid circles, MOPSA nonetheless predicts particle trajectories that are consistent with the experimentally observed behavior of published DLD chips sorting some types of deformable and non-spherical cells and droplets. However, undoubtedly there are particles that cannot be approximated as rigid circles and simulated successfully using MOPSA; for these particles other simulation approaches may be necessary and could even be incorporated into future versions of MOPSA (as discussed in the Conclusions).
II. SIMULATION
Simulating a microfluidic chip using MOPSA requires two steps:
-
1.
Calculate the fluid velocity field in the chip using conventional finite element analysis software
-
2.
Calculate the trajectory followed by a particle through the chip using MOPSA
In this proof-of-concept demonstration, we used COMSOL Multiphysics to calculate the fluid velocity field and MATLAB to implement MOPSA. We used this approach to simulate three different microfluidic chip models:
-
1.
The cross channel model is a typical microfluidic cross-shaped intersection with 200 μm channel widths. Junctions like this are extremely common in microfluidic chips,10–13 so assessing the performance of MOPSA in these intersections is very important.
-
2.
The triangular DLD model was chosen because of its complexity. Arrays of hundreds of triangular posts offer many opportunities for interactions between particles and the posts and challenge the robustness of MOPSA.
-
3.
The cylindrical DLD model enables comparisons between MOPSA and published experimental results. The vast majority of DLD chips in the literature use arrays of cylindrical posts, and we use MOPSA to simulate the paths followed by particles in six published DLD experiments by three different research groups.7,14,15
While we chose these three models for this proof-of-concept demonstration, we note that, in principle, MOPSA can simulate virtually any microfluidic chip design containing flowing particles, as long as the chip can be modeled in two dimensions (MOPSA is currently a two-dimensional simulation, although it could easily be extended to three dimensions as discussed in the Conclusions) and as long as the particles can be approximated as rigid circles or spheres. Finally, to compare MOPSA to existing commercial software tools for particle simulation in microfluidics, we also simulated these chip models entirely in COMSOL Multiphysics (without using MOPSA).
A. Calculating fluid velocity field in COMSOL
For each microfluidic chip model simulated here, the fluid velocity fields were calculated using finite element analysis software (COMSOL Multiphysics). For accuracy, we used the Laminar Flow physics module and a customized free triangle mesh with a maximum mesh size that was equal to or less than the diameter of the smallest particle that would be simulated using that mesh. In the cross channel model, the maximum mesh size was 8 μm (for simulating a particle diameter of 50 μm). Inlets were assigned an inlet boundary condition of 5 mm/s normal inflow velocity. In the triangular DLD models, the maximum mesh size was 1 μm (for simulating particle diameters of 1, 3, 10, and 12 μm). In the cylindrical DLD models, the maximum mesh size was a quarter of the difference between two simulated particles' diameters (e.g., for simulating a DLD chip separating 8 and 9 μm beads, the maximum mesh size was 0.25 μm). Inlets were assigned an inlet boundary condition of 1 mm/s normal inflow velocity. In all models, outlets were assigned an outlet boundary condition of 0 Pa pressure, the remaining boundaries were walls (no-slip boundary condition), and the material filling the channels was water under incompressible flow. A stationary solver was used for calculating the fluid velocity field.
ALGORITHM 1.
Main MOPSA algorithm
Require: Velocity profile in x and y direction of model (x.csv, y.csv), diameter of particle (Dp), initial position of particle (positioni), model geometry file (geometry.dxf), resolution of generating streamlines (resolution), vxpre, vypre, β. |
Ensure: Simulated particle trajectory (trajectory) |
1: ▷ Load microfluidic chip geometry from DXF file. |
2: ▷ Load pre-simulated fluid velocity profiles. |
3: |
4: ▷ Load mesh information from x.csv. |
5: nodesorted ← sortrows(node) ▷ Sort nodes based on x-direction. |
6: min max min max ▷ Define region of interest. |
7: ▷ Initialize current position of particle. |
8: ▷ Initialize trajectory of particle. |
9: while do ▷ Move to next time step if particle is still in region of interest. |
10: findCoveredNodes ▷ Identify mesh nodes covered by particle. |
11: getMean ▷ Set particle velocity to average fluid velocity of covered mesh nodes. |
12: getMean |
13: ▷ Scale lateral (y) component of particle velocity by β if necessary. |
14: if vx = 0 and vy = 0 then ▷ If particle has zero velocity (is stuck)… |
15: ▷…use the particle's velocity from the previous time step instead. |
16: |
17: end if |
18: ▷ Calculate position of particle at next time step. |
19: wallEffect ▷ Apply wallEffect (see Algorithm 2). |
20: |
21: ▷ Record new particle position. |
22: ▷ Record new “previous” particle velocity for use in next iteration. |
23: |
24: end while |
B. Simulating particle trajectory with MOPSA
MOPSA is summarized in pseudocode in Algorithm 1. We implemented MOPSA in MATLAB to leverage MATLAB's strengths in matrix calculation. Using the built-in MATLAB function INPOLYGON significantly simplifies the MOPSA code. In principle, the pseudocode shown here could be implemented in any programming language.
MOPSA first imports the geometry of the microfluidic chip (the design of the chip in DXF format16), the fluid velocity field calculated by COMSOL Multiphysics, and the description of the mesh used by COMSOL (lines 1–4 of Algorithm 1). Instead of treating the particle as a single mathematical point, MOPSA uses the average velocity of all of the mesh nodes covered by the particle to determine the particle's velocity profile (lines 11–12). vx represents the magnitude of the velocity vector in the x direction, and vy represents the velocity in the y direction. As shown in Algorithm 1 line 13, MOPSA uses an empirically obtained parameter β to “weight” the components of the particle velocity vector in direction orthogonal to fluid flow (the y direction). For the cross channel model, β = 1 (meaning that the velocities calculated by COMSOL are used as-is). For the triangular and cylindrical DLD models, β = 1.45. Details on how this value was determined are provided in Results and Discussion.
MOPSA next considers the possibility of particles with zero velocity. In theory, as long as there is fluid flow in a microfluidic channel, mesh nodes with zero fluid velocity should exist only at channel walls. However, in practice, a finite mesh size makes it possible for software like COMSOL Multiphysics to predict that nodes near channel walls may also have zero fluid velocity. A particle located at a mesh node with zero fluid velocity can become permanently trapped. To detect this situation, MOPSA utilizes a conditional statement (line 14 in Algorithm 1) to determine if the velocity of the particle in the time step will be zero. If so, MOPSA uses the particle's non-zero velocity from the previous time step for the current time step calculation (lines 15 and 16). As long as the amount of time between steps [resolution, defined in Eq. (1) below] is sufficiently small, this substitution does not seem to affect the accuracy of the simulation. In this manner, MOPSA ensures that the particle will not get permanently stuck. Alternatively, for applications in which particle sticking is desired (for example, using antibody-coated posts to capture cells of interest in a microfluidic chip17), a threshold can be added to allow particle sticking below a user-specified particle velocity.
MOPSA then uses Eq. (1) to calculate the particle's position at the next time step18
(1) |
where positionc (μm) is the current position of the particle, positionn (μm) is the position of the particle in the next time step, resolution (s) is the amount of time between each calculation step, and vx and vy (μm/s) are the average fluid velocities of the mesh nodes covered by the particle, as defined earlier. The variable resolution is a parameter that can be customized by the user. A smaller resolution makes the simulation more accurate but also more time consuming. If the flow through a chip is relatively fast, then a small value for resolution is needed to accurately predict the path followed by a particle in the fluid. If the flow is relatively slow, then a larger resolution can be used without sacrificing simulation accuracy. To find an optimal value for resolution, a MOPSA simulation can be repeated with successively smaller values for resolution. Eventually the predicted particle trajectories will converge to a single trajectory that will not change with additional decreases in resolution; this is the optimal value for resolution for a given application.
Eq. (1) assumes that:
-
1.
The density of the particle is the same as its surrounding fluid.
-
2.
The net force applied to the particle is always zero.
-
3.
Particles do not interfere with each other or channel walls.
-
4.
Particles have smooth surfaces, so friction between fluid and particle surfaces is negligible.
-
5.
The material of the particle is homogeneous.
If these assumptions are unsuitable for a particular application, MOPSA can be modified by replacing Eq. (1) with a more complicated drag law such as Stokes' Law19 or the work of Haider and Levenspiel20 (we demonstrate a modification of MOPSA later in this work).
ALGORITHM 2.
function wallEffect
Require: microfluidic chip wall geometry information (polylines), radius of particle (Rp), current position of particle (positionc), particle mapping parameter (k) |
Ensure: shifted position of particle (positions) |
1: function wallEffect(Rp, positionc, polylines) |
2: ▷ Calculate locations of the k points representing the particle boundary. |
3: |
4: for do |
5: ▷ Obtain the next polyline representing a channel feature (post, wall, etc.) |
6: if then ▷ Confirm polyline is closed. |
7: |
8: |
9: inpolygon ▷ Determine how many boundary points of the particle are inside the polyline. |
10: |
11: |
12: for do |
13: if in(j) = 1 then |
14: |
15: |
16: end if |
17: end for |
18: if countin > k or countin = 0 then ▷ If the particle does not overlap with the wall… |
19: ▷…keep the current position of the particle. |
20: else ▷ However, if the particle does overlap with the wall: |
21: mean |
22: norm ▷…calculate the shift direction as a normal vector… |
23: ▷…and apply the shift to the particle location. |
24: BREAK () |
25: end if |
26: end if |
27: end for |
28: return positions ▷ Return the new particle location to the main MOPSA algorithm. |
29: end function |
After the particle's position at the next time step has been calculated, MOPSA's wallEffect function (Algorithm 2) determines if the particle will collide or overlap with solid walls. As shown in Fig. 2, wallEffect uses a large number of points (k = 200) to map the boundary of the particle located at position a. If any of these k points are located inside a solid wall (e.g., a triangular post, a channel wall, or any other device feature), then the algorithm recognizes that the particle is overlapping the wall and compensates by shifting the particle's position away from the wall to a new location . The direction of this shift is determined by first identifying the two points of contact between the particle perimeter and the wall (b and c), then defining a line segment bc between these two points, and finally computing the midpoint d of the line segment. The direction of the particle shift is perpendicular to line bc (roughly pointing in the opposite direction of the fluid flow) and is calculated using Eq. (2)
(2) |
where positions is the shifted position of the particle, positionc is the initial (wall-overlapping) position of the particle, direction is a normal vector describing the shifting direction, k is the total number of points used to map the perimeter of the particle, countin is the number of those perimeter mapping points located inside the solid wall, Rp is the radius of the particle, and w is a weight factor that can be adjusted for different models (w = 1 was used in this work). Once this algorithm has corrected the overlapping position of the particle, MOPSA moves on to the next simulation time step.
FIG. 2.
Function of the wallEffect algorithm. A particle centered at point a (positionc in Algorithm 2) has its boundary represented by 200 points (depicted as small red points). If any of these points overlap with a solid chip feature, such as the triangular post shown (blue), the algorithm shifts the particle to a new location (green boundary; positions in Algorithm 2) in a direction perpendicular to the midpoint d of line bc (defined by the cyan ×-shaped points on the intersections between the particle boundary and the edges of the post). The distance of the shift is determined by Eq. (2). In this illustration, the area of overlap between the particle and post and the distance of the shift are intentionally exaggerated for clarity. In practice, choosing a properly small value of resolution [Eq. (1)] will ensure that the overlap and shift distance are small and the shift direction will be approximately perpendicular to the edge of the post.
The parameters resolution in Eq. (1) and w in Eq. (2) provide a mechanism for fine-tuning the wallEffect algorithm. For example, if the algorithm predicts an unrealistically large shift distance, reducing resolution will decrease the amount of overlap between the particle and wall (and thus decrease the amount of correction applied by the wallEffect. If the algorithm predicts an unrealistically small shift distance, increasing w will increase the shift distance. Finally, if the geometry of a wall has concave features, wallEffect may yield unexpected results because the particle perimeter could intersect with the wall in more than two points. In this case, changing w could compensate for unexpected results from concave wall geometries. In any case, w = 1 was used for all of the simulations presented here.
C. Comparison with existing commercial particle tracers
To compare the performance of MOPSA to an existing commercial particle tracer, we repeated all of our particle simulations using the built-in Particle Tracing for Fluid Flow physics module in COMSOL Multiphysics. The simulations used a time-dependent solver, and a “drag force” boundary was added into the physics to use Stokes' Law for particle trajectory calculation. For the triangular DLD model, the inlet was assigned an inlet boundary condition of 100 particles per release with a uniform distribution. The particles were assigned diameters of 1, 3, 10, or 12 μm (although, as described above, these diameters do not seem to affect the simulation results in COMSOL Multiphysics). The outlet was assigned an outlet boundary condition of freeze wall. The six cylindrical DLD model chips we simulated used the same conditions as the triangular DLD model but with 10 particles per release and the particle diameters shown in Table I. We also tested a range of boundary conditions for the post walls in the DLD models, including bounce, diffuse scattering, and general reflection. Finally, for the cross channel model, the inlet was assigned an inlet boundary condition of 10 particles per release (50 μm particle diameter) with uniform distribution and the outlet was assigned an outlet boundary condition of freeze wall.
TABLE I.
Experimental details from six published deterministic lateral displacement (DLD) particle separations. These experiments are reproduced by MOPSA in Fig. 7. The parameters λ, Δλ, and G describe the DLD device design and are defined in Fig. 6.
Figure | λ (μm) | Δλ (μm) | G (μm) | Sorted particle types and sizes | Figure in reference |
---|---|---|---|---|---|
7(a) | 80 | 6 | 25 | 8 μm and 9 μm beads | Fig. 2(a) in Li et al.14 |
7(b) | 90 | 8 | 25 | 9 μm and 10 μm beads | Fig. 2(b) in Li et al.14 |
7(c) | 80 | 2 | 20 | 2 μm platelets and 6 μm red blood cells | Fig. 4(a) in Li et al.14 |
7(d) | 80 | 5 | 20 | 6 μm red blood cells and 10 μm white blood cells | Fig. 4(b) in Li et al.14 |
7(e) | 8 | 0.8 | 1.6 | 0.4 μm and 1.0 μm beads | Fig. 2(a) in Huang et al.7 |
7(f) | 120 | 6 | 60 | 11 μm and 30 μm droplets | Fig. 2(c) in Joensson et al.15 |
III. RESULTS AND DISCUSSION
A. Simulating the cross channel model
The fluid velocity field of the cross channel model was solved using COMSOL Multiphysics and is shown in Fig. 3(a). This model simulates a cross-channel with fluid entering from the left and exiting out the top, right, and bottom. For rigid spherical particles originating at many locations across the left-hand entrance channel, COMSOL's particle tracer and MOPSA predict very similar particle trajectories. However, for particles that start close to a channel wall, MOPSA's simulation is more realistic than COMSOL's. Figure 3(b) shows trajectories predicted by COMSOL (red) and MOPSA (green) for a 50 μm diameter particle flowing adjacent to the channel wall. In the trajectory predicted by COMSOL, the particle overlaps with the channel wall as it goes around the corner. In contrast, MOPSA detects these channel walls and keeps the particle from overlapping them. The realistic wall interactions simulated by MOPSA result in a particle trajectory that is 18 μm (36% of the particle's size) farther to the right than the trajectory calculated by COMSOL. For simple microfluidic chips with a single intersection, the particle tracing errors introduced by software like COMSOL Multiphysics may be acceptable and may not affect the overall accuracy of the simulation. However, for microfludic chips with hundreds of intersections in parallel (like the hydrodynamic filter of Yamada et al.10), small errors in each intersection could combine to form a large net error associated with the path followed by particles flowing across the entire chip. In these cases, MOPSA should provide a much more accurate particle trajectory than existing software tools.
FIG. 3.
(a) Fluid velocity field of the cross channel model obtained from COMSOL Multiphysics (dimensions in μm and velocity in m/s). (b) Simulated trajectories of a 50 μm diameter particle traveling through the cross channel model. In the trajectory calculated by the particle tracer in COMSOL Multiphysics (red outlines) the particle overlaps with the channel wall (an impossibility). However, in the trajectory calculated by MOPSA (green outlines) the particle remains separate from the channel wall and exits the intersection offset 18 μm from the COMSOL-predicted trajectory (a significant difference for a particle this size).
B. Simulating deterministic lateral displacement (DLD)
We also tested MOPSA on the triangular deterministic lateral displacement (DLD) model cell sorter to determine how the algorithm performs in a chip with more complex geometry. Figure 4 shows the predicted particle trajectories for a 10 μm diameter rigid spherical particle flowing through an array of triangular posts, calculated using COMSOL Multiphysics (red) and MOPSA (green). In both simulations, the particle starts at the same location. Since COMSOL treats the particle as a mathematical point, COMSOL's trajectory allows the particle to overlap with a triangular post, which is physically impossible. Additionally, later in the COMSOL simulation the particle encountered a zero-velocity mesh node and permanently stopped. In contrast, the trajectory calculated by MOPSA is much more consistent with the known mechanism of DLD. Repeated interactions with triangular posts laterally displace the particle, and no overlapping or sticking with posts is observed (even after repeating the simulation shown in Fig. 4 hundreds of times with different starting locations for the particle). The design of this chip in DXF format, fluid velocity field, and particle trajectory data are all available for download in online supplementary material.
FIG. 4.
Predicted trajectories for a 10 μm diameter particle traveling through an array of triangular posts, obtained using either COMSOL Multiphysics (red) or MOPSA (green). While the COMSOL trajectory allows the particle to overlap with solid posts and stick permanently, the MOPSA trajectory does not. Additionally, the trajectory predicted by MOPSA exhibits the lateral particle displacement expected in DLD chips like this one.
The goal of DLD is to separate different cells and other particles based on their size: smaller particles follow the fluid streamlines straight through the device, while larger particles are “bumped” laterally by the posts and follow a diagonal path through the device. To confirm that MOPSA can simulate the particle sorting capabilities of a DLD chip, in Fig. 5 we used it to simulate the trajectories of 1, 10, and 12 μm diameter rigid spherical particles flowing through an array of triangular posts. Although particles of all three sizes start in the same location, MOPSA predicts that the particles will exit the chip in different locations: the small 1 μm particle follows the fluid streamlines and moves straight through the chip, and the large 12 μm particle is “bumped” by each post and moves diagonally through the chip. The mid-sized 10 μm particle initially follows a diagonal path but then switches to a straight-through path, leading to a trajectory that lies between the other two particles' trajectories. This suggests that the critical diameter for this DLD chip design (the size of the smallest particle that is laterally displaced in the chip) is close to 10 μm. In contrast, particles of different sizes follow exactly the same trajectory in COMSOL's particle tracer (Fig. 1). These results confirm that MOPSA can successfully simulate size-based DLD separations that are difficult or impossible to simulate using existing commercial software, at least for rigid spherical particles. The design of this chip in DXF format, fluid velocity field, and particle trajectory data are all available for download in online supplementary material.
FIG. 5.
Using MOPSA to predict the trajectories of 1 μm (red), 10 μm (purple), and 12 μm (green) diameter particles flowing through a DLD chip containing an array of triangular posts. The simulation predicts that the smallest particle will flow straight through the array and the largest particle will be displaced laterally by interactions with the posts. This is consistent with the known operation of DLD devices. The mid-sized particle (10 μm; purple) is initially displaced laterally but then follows a straight path; this suggests that this particle may be close to the critical diameter for this DLD chip design.
C. Simulating published DLD experiments
We next used MOPSA to predict the paths followed by different sized particles in several published DLD chips. We identified six experiments in three published papers7,14,15 in which the chip designs and experimental conditions are described in sufficient detail to allow us to simulate them using MOPSA. These chips use arrays of cylindrical posts with dimensions defined in Fig. 6 and summarized in Table I.
FIG. 6.
Illustration of the key dimensions in a traditional cylindrical-post-based DLD chip: spacing between posts (λ), gap between posts (G), and offset between rows of posts (Δλ).
We first simulated the DLD chip described by Li et al.14 who used this chip to sort 8 μm and 9 μm diameter rigid spherical beads. We found that with a value of β = 1.45, the MOPSA predicts that the 8 μm and 9 μm beads will follow different paths through the DLD chip [Fig. 7(a)]; this is consistent with the observed bead sorting behavior of this DLD chip.14
FIG. 7.
Using MOPSA to predict particle trajectories in six published deterministic lateral displacement (DLD) experiments from three research groups.7,14,15 These simulations are based on (a) a chip that separates 8 μm and 9 μm beads,14 (b) a chip that separates 9 μm and 10 μm beads,14 (c) a chip that separates 2 μm platelets and 6 μm red blood cells,14 (d) a chip that separates 6 μm red blood cells and 10 μm white blood cells,14 (e) a chip that separates 0.4 μm and 1.0 μm beads,7 and (f) a chip that separates 11 μm and 30 μm droplets.15 In each case, MOPSA's prediction that the different-sized particles follow different paths is consistent with the experimentally observed particle sorting behavior of these DLD chips.7,14,15
We then left the value of β = 1.45 unchanged as we used MOPSA to predict the paths followed by particles through five additional published DLD chips from three research groups [Figs. 7(b)–7(f)]. In their original publications,7,14,15 these chips were used to sort a wide variety of particle sizes (from 0.4 μm to 30 μm diameters) and types (beads, droplets, red blood cells, white blood cells, and platelets). Some of these particles are not rigid or spherical—droplets are not rigid, and red blood cells, white blood cells, and platelets are neither rigid nor spherical—so one may rightly expect that MOPSA (which assumes rigid spherical particles) may not be able to accurately simulate the trajectories of these particles. However, MOPSA nonetheless successfully predicted that the different-sized particles follow different paths through the chip. This prediction is consistent with the particle-sorting behavior reported by the creators of these chips. In contrast, the built-in particle tracer in COMSOL Multiphysics predicted no differences in the paths followed by the different particles (see supplementary material Figs. 2–7). Undoubtedly there are some particles whose deformability and non-spherical shapes will render MOPSA unable to accurately simulate the behavior of these particles, but at least for the particle types and sizes we studied, MOPSA's assumption of rigid and spherical particles did not seem to adversely affect the quality of the simulation results. The chip design DXF files, fluid velocity profiles, and predicted particle trajectories from both MOPSA and COMSOL for each of the six simulations in Fig. 7 are available in supplementary material.
In some of the DLD chip simulations in Fig. 7, MOPSA predicted that the smaller particles will follow a somewhat jagged path when the particles flow vertically between two rows of posts. For example, in Fig. 7(c) the 2 μm diameter platelets seem to make two sharp turns as they pass from above the third row of posts to below the row. This behavior was unexpected; to determine its source, we examined the fluid velocity fields calculated by COMSOL for these DLD simulations. Close inspection of the gaps between columns of posts (supplementary material Fig. 8) reveals that COMSOL predicted asymmetric fluid velocity fields in these gaps in the cases where the MOPSA-predicted particle paths were most jagged. For example, the fluid velocity field calculated by COMOSL for the chip in Fig. 7(c) [shown in supplementary material Fig. 8(c)] has a diagonal region of low flow between every two pillars; when MOPSA uses this fluid velocity field to predict the path followed by a particle between the pillars, the asymmetry in the field results in a jagged predicted particle path. These particle trajectories do not seem to affect the overall simulation results (that different-sized particles follow different paths through the DLD chips).
Why was it necessary to increase β to successfully simulate DLD chips in MOPSA? One explanation could be our assumption that the presence of the particle will not affect the fluid velocity profile in the chip. In actuality, the presence of a particle could increase the hydrodynamic resistance of the DLD chip.21 This could reduce the fluid velocity in the direction of flow (the x direction) and make the fluid velocity in the direction perpendicular to flow (the y direction) more significant. Increasing β from 1 to 1.45 adds additional weight to the y component of the fluid velocity and enables MOPSA to accurately simulate particles in DLD devices, at least for the particle sizes and types considered here. While this value of β may not be suitable for all DLD devices or particle sizes and types, it is noteworthy that all six previously published DLD chips we replicated in this work were successfully simulated using the same value for β (1.45).
D. Extending MOPSA to simulate particles with different densities
In its current form, MOPSA is capable of simulating rigid spherical particles in a variety of different microfluidic applications. However, in some cases it may be necessary to add additional physics modules to MOPSA to simulate certain particle properties. For example, microfluidic chips have been demonstrated that sort cells and other particles by their densities.22,23 Since the current MOPSA assumes that all particles have the same density (and the particles' density equals the density of the fluid around the particles), MOPSA cannot currently be used to simulate the behavior of these density sorter chips.
To demonstrate that additional particle properties can be readily added to MOPSA when needed, we added support for particle density to MOPSA. Our approach uses the work of Haider and Levenspiel20 to predict the effects of buoyancy on particles. We then used our modified MOPSA to predict the paths followed by rigid spherical particles of four different densities (0.8, 1.0, 1.2, and 1.5 g/cm3) in a microfluidic chip filled with water (1.0 g/cm3) and oriented on its edge relative to Earth's gravity. In Fig. 8, all four particles start at the same location in a lower inlet. As the particles flow along the horizontal channel, our modified MOPSA correctly predicts that the particles with density greater than the fluid density will sink downward and exit via the lower outlet, and the particles with density greater than the fluid density will float upward and exit via the upper outlet. Since different cell types often have different densities,24 our modified MOPSA may be used to help design chips for sorting cells by their type, an important capability in biological research and medical diagnostics.
FIG. 8.
Using a modified version of MOPSA to simulate the behavior of a microfluidic chip for sorting cells and other particles by their densities. The chip simulated is based on published results22,23 and consists of two inlets that merge into a single horizontal channel before splitting into two outlets. The chip is oriented on its edge relative to Earth's gravity. (a) Fluid velocity field for the density sorter chip, obtained using COMSOL Multiphysics. (b) After modifying MOPSA using the approach of Haider and Levenspiel,20 MOPSA predicts the paths followed by four rigid spherical particles of different densities as they enter from the lower input and travel through the chip. As expected, particles with density greater than the fluid density of 1.0 g/cm3 exit the lower outlet, and particles with density less than the fluid density exit the upper outlet. This demonstrates that additional particle properties (like density) can be added to MOPSA when necessary.
IV. CONCLUSIONS
In this work, we presented MOPSA, an algorithm for optimized particle simulation in microfluidic chips. By treating particles as two-dimensional objects instead of single points and applying corrections when particles interact with channel walls, MOPSA can accurately simulate particle behaviors that particle tracers in existing commercial software tools cannot. Consequently, adopting MOPSA into the design process for microfluidic chips that contain cells, droplets, and other particles should be beneficial.
A. Limitations of MOPSA and future directions
MOPSA makes several assumptions about the particles it simulates: the particles are circular or spherical, they have the same density as the fluid around them, they have smooth surfaces, they do not interact with other particles, and so on. These assumptions may limit the utility of MOPSA for some applications. For example, in its current form, MOPSA cannot simulate effects of inertia on either the particles or the fluid in a chip; these effects have been used as the basis for particle sorting and focusing in microfluidics.25 However, for at least some particle sizes and types, MOPSA's assumption of rigid spheres seems to still yield results that are consistent with experimental observations.
For particles that cannot be assumed to be rigid spheres, a number of modeling techniques have been proposed for simulating the behavior of these particles.26 For example, dissipative particle dynamics27–29 has been successfully applied to simulate the deformation of red blood cells in DLD chips.26,30 Zhu et al.31 modeled deformable cells as fluid-filled capsules enclosed by neo-Hookean membranes.32 Krüger et al.33 used the immersed-boundary method34 to model membrane dynamics during cell deformation. These and other models can be used in situations where MOPSA fails to accurately predict the behavior of a non-rigid, non-spherical particle; some of them could even be incorporated into future versions of MOPSA.
We also demonstrated that MOPSA can be easily extended to simulate other particle properties like particle density. This same approach can be used to enable MOPSA to support other important properties of particles. For example, by altering the wallEffect algorithm to allow cells to stick to channel walls, one could simulate the behavior of microfluidic devices that intentionally capture cells in this manner.17 Additionally, to include the effects of other forces such as electrostatics and acoustics on a particle's trajectory, additional equations can be added to Line 18 in Algorithm 1. To simulate particle-particle interactions that may be important in applications with high particle concentrations, it may be necessary to periodically recalculate the fluid velocity vector field while including particle positions (and particle-induced drag) in the finite element analysis calculation. In our experience, including particle positions in this manner has a negligible effect on simulation accuracy but significantly increases the required computational time, but it may be necessary for some applications.
Finally, MOPSA is currently a two-dimensional simulation technique and cannot be used to simulate three-dimensional microfluidic channel networks. However, nothing about MOPSA precludes extending the algorithm to three dimensions. This would enable MOPSA to simulate particle trajectories in emerging 3D-printed microfluidic chips that can have channels in all three spatial dimensions.35
V. SUPPLEMENTARY MATERIAL
See supplementary material for fluid velocity field for the simulations in Figs. 4, 5, and 7(a)–7(f); results from using COMSOL Multiphysics to simulate the deterministic lateral displacement (DLD) chips in Figs. 7(a)–7(f); closeups of the calculated fluids velocity fields for the DLD chips in Figs. 7(a)–7(f); calculated particle trajectories from MOPSA for the simulations in Figs. 4, 5, and 7(a)–7(f) in MATLAB MAT format; and CAD files for the chip designs in Figs. 4, 5, and 7(a)–7(f) in DXF format.
ACKNOWLEDGMENTS
This work was supported in part by the National Science Foundation Division of Biological Infrastructure under Award No. DBI-1353974, the National Science Foundation Division of Computer and Communication Foundations program under Award No. CCF-1351115, and the National Science Foundation Division of Industrial Innovation and Partnerships under Award No. IIP-1640757.
References
- 1. Terry S. C., Jerman J. H., and Angell J. B., IEEE Trans. Electron. Devices 26, 1880 (1979). 10.1109/T-ED.1979.19791 [DOI] [Google Scholar]
- 2. Kost G. J., Principles & Practice of Point-of-Care Testing ( Lippincott Williams & Wilkins, 2002). [Google Scholar]
- 3. Shields C. W. IV, Reyes C. D., and López G. P., Lab Chip 15, 1230 (2015). 10.1039/C4LC01246A [DOI] [PMC free article] [PubMed] [Google Scholar]
- 4. Wörner M., Microfluid. Nanofluid. 12, 841 (2012). 10.1007/s10404-012-0940-8 [DOI] [Google Scholar]
- 5. Runyon M. K., Kastrup C. J., Johnson-Kerner B. L., Van Ha T. G., and Ismagilov R. F., J. Am. Chem. Soc. 130, 3458 (2008). 10.1021/ja076301r [DOI] [PubMed] [Google Scholar]
- 6. Siegrist J., Amasia M., Singh N., Banerjee D., and Madou M., Lab Chip 10, 876 (2010). 10.1039/b917880e [DOI] [PubMed] [Google Scholar]
- 7. Huang L. R., Cox E. C., Austin R. H., and Sturm J. C., Science 304, 987 (2004). 10.1126/science.1094567 [DOI] [PubMed] [Google Scholar]
- 8. Loutherback K., Chou K. S., Newman J., Puchalla J., Austin R. H., and Sturm J. C., Microfluid. Nanofluid. 9, 1143 (2010). 10.1007/s10404-010-0635-y [DOI] [Google Scholar]
- 9. Inglis D. W., Davis J. A., Austin R. H., and Sturm J. C., Lab Chip 6, 655 (2006). 10.1039/b515371a [DOI] [PubMed] [Google Scholar]
- 10. Yamada M., Kano K., Tsuda Y., Kobayashi J., Yamato M., Seki M., and Okano T., Biomed. Microdev. 9, 637 (2007). 10.1007/s10544-007-9055-5 [DOI] [PubMed] [Google Scholar]
- 11. Fu A. Y., Spence C., Scherer A., Arnold F. H., and Quake S. R., Nat. Biotechnol. 17, 1109 (1999). 10.1038/15095 [DOI] [PubMed] [Google Scholar]
- 12. Wang X., Chen S., Kong M., Wang Z., Costa K. D., Li R. A., and Sun D., Lab Chip 11, 3656 (2011). 10.1039/c1lc20653b [DOI] [PubMed] [Google Scholar]
- 13. Ji H. M., Samper V., Chen Y., Heng C. K., Lim T. M., and Yobas L., Biomed. Microdev. 10, 251 (2008). 10.1007/s10544-007-9131-x [DOI] [PubMed] [Google Scholar]
- 14. Li N., Kamei D. T., and Ho C.-M., in 2007 2nd IEEE International Conference on Nano/Micro Engineered and Molecular Systems (IEEE, 2007), pp. 932–936. [Google Scholar]
- 15. Joensson H. N., Uhlén M., and Svahn H. A., Lab Chip 11, 1305 (2011). 10.1039/c0lc00688b [DOI] [PubMed] [Google Scholar]
- 16.See http://www.autodesk.com/techpubs/autocad/acad2000/dxf/ascii_dxf_files_dxf_aa.htm for “ASCII DXF Files” (last accessed September 26, 2016).
- 17. Nagrath S., Sequist L. V., Maheswaran S., Bell D. W., Irimia D., Ulkus L., Smith M. R., Kwak E. L., Digumarthy S., Muzikansky A., Ryan P., Balis U. J., Tompkins R. G., Haber D. A., and Toner M., Nature 450, 1235 (2007). 10.1038/nature06385 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 18. Newton I., Motte A., and Chittenden N., Newton's Principia: The Mathematical Principles of Natural Philosophy ( Geo. P. Putnam, 1850). [Google Scholar]
- 19. Batchelor G. K., An Introduction to Fluid Dynamics ( Cambridge University Press, 2000). [Google Scholar]
- 20. Haider A. and Levenspiel O., Powder Technol. 58, 63 (1989). 10.1016/0032-5910(89)80008-7 [DOI] [Google Scholar]
- 21. Cartas-Ayala M. A., Raafat M., and Karnik R., Small 9, 375 (2013). 10.1002/smll.201201422 [DOI] [PubMed] [Google Scholar]
- 22. Huh D., Bahng J. H., Ling Y., Wei H.-H., Kripfgans O. D., Fowlkes J. B., Grotberg J. B., and Takayama S., Anal. Chem. 79, 1369 (2007). 10.1021/ac061542n [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23. Song J., Song M., Kang T., Kim D., and Lee L. P., Biomicrofluidics 8, 064108 (2014). 10.1063/1.4902906 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 24. Grover W. H., Bryan A. K., Diez-Silva M., Suresh S., Higgins J. M., and Manalis S. R., Proc. Natl. Acad. Sci. U.S.A. 108, 10992 (2011). 10.1073/pnas.1104651108 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 25. Di Carlo D., Lab Chip 9, 3038 (2009). 10.1039/b912547g [DOI] [PubMed] [Google Scholar]
- 26. Henry E., Holm S. H., Zhang Z., Beech J. P., Tegenfeldt J. O., Fedosov D. A., and Gompper G., Sci. Rep. 6, 34375 (2016) 10.1038/srep34375. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 27. Hoogerbrugge P. and Koelman J., Europhys. Lett. 19, 155 (1992). 10.1209/0295-5075/19/3/001 [DOI] [Google Scholar]
- 28. Espanol P. and Warren P., Europhys. Lett. 30, 191 (1995). 10.1209/0295-5075/30/4/001 [DOI] [Google Scholar]
- 29. Espanol P. and Revenga M., Phys. Rev. E 67, 026705 (2003). 10.1103/PhysRevE.67.026705 [DOI] [PubMed] [Google Scholar]
- 30. Zhang Z., Henry E., Gompper G., and Fedosov D. A., J. Chem. Phys. 143, 243145 (2015). 10.1063/1.4937171 [DOI] [PubMed] [Google Scholar]
- 31. Zhu L., Rorai C., Mitra D., and Brandt L., Soft Matter 10, 7705 (2014) 10.1039/C4SM01097C. [DOI] [PubMed] [Google Scholar]
- 32. Pozrikidis C., Computational Hydrodynamics of Capsules and Biological Cells, Chapman and Hall/CRC Mathematical and Computational Biology Series ( CRC Press, Boca Raton, 2010). [Google Scholar]
- 33. Krüger T., Holmes D., and Coveney P. V., Biomicrofluidics 8, 054114 (2014). 10.1063/1.4897913 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 34. Peskin C. S., Acta Numer. 11, 479 (2002). 10.1017/S0962492902000077 [DOI] [Google Scholar]
- 35. Bhattacharjee N., Urrios A., Kang S., and Folch A., Lab Chip 16, 1720 (2016). 10.1039/C6LC00163G [DOI] [PMC free article] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Supplementary Materials
See supplementary material for fluid velocity field for the simulations in Figs. 4, 5, and 7(a)–7(f); results from using COMSOL Multiphysics to simulate the deterministic lateral displacement (DLD) chips in Figs. 7(a)–7(f); closeups of the calculated fluids velocity fields for the DLD chips in Figs. 7(a)–7(f); calculated particle trajectories from MOPSA for the simulations in Figs. 4, 5, and 7(a)–7(f) in MATLAB MAT format; and CAD files for the chip designs in Figs. 4, 5, and 7(a)–7(f) in DXF format.