SlideShare une entreprise Scribd logo
1  sur  18
For any Assignment related queries, Call us at : - +1 678 648 4277
You can mail us at : - info@mechanicalengineeringassignmenthelp.com or
reach us at : - https://www.mechanicalengineeringassignmenthelp.com/
Problem 1: Calculating fluidic resistances
Here we will examine the fluidic resistances of square versus rectangular channels.
Assume a channel with crosssection of 50 μm x 50 μm and length L=1 cm, and that the
working fluid is water.
a) Using a parallel-plate Poiseuille flow approximation, calculate the fluidic resistance of
the channel in Pa/(μl/min).
b) The parallel-plate flow approximation is not strictly valid when the width of the
channel approaches the height. A more general relation between flow and pressure for a
rectangular channel of width W and height h (where W≥h), is
Use this relation to calculate the resistance of the channel. What is the error of the
parallel-plate approximation?
mechanicalengineeringassignmenthelp.com
c) Determine analytically or numerically the minimum W/h where the Poiseuille
approximation has a 10% deviation from the exact solution.
Problem 2: Timescales in microfluidic flows
One commonly assumes that in the creeping flow regime encountered in microfluidics,
flows start and stop instantaneously. However, what happens in the real world, where Re
is not exactly zero? In this problem we will find out.
a) First, we will derive the relevant dimensionless quantities. Starting from the
incompressible Navier-Stokes equation in the text (Eq. 13.25), assume incompressible
flow, neglect gravity, and expand out the total derivative. What is the N-S equation
now?
b) Next, non-dimensionalize the N-S equation using the following relations:
where U0, τ, and L are a characteristic velocity, timescale, and length scale for the flow.
Place the nondimensional N-S equation in the form of
mechanicalengineeringassignmenthelp.com
What are Re and Sr? One now sees how the L in the Reynolds number comes from the
characteristic dimension over which spatial change occurs (e.g., from L∇=∇~ ).
c) In creeping flow we can neglect the convective term leading to
If Re<<Sr we return to our quasistatic creeping flow equation where time doesn't
matter. Let's examine this coefficient. The Re and Sr numbers can be represented as
ratios of timescales. First, express Sr and Re as
What are τc and τv? What do they represent? The ratio is then
mechanicalengineeringassignmenthelp.com
and thus the flow is quasistatic when τv is much less than the timescale imposed by the
external force.
d) Suppose you have a square 100 μm × 100 μm microchannel filled with water (η =10-3
Pa-s, ρm =1000 kg/m3 ). You apply a step input of pressure. Approximately how long will
it take for the flow to reach steady state? Which timescale dominates the flow
development in this case?
Problem 3: Microfluidic networks and fabrication variations
We commonly create microfluidic networks that take an input flow and distribute that
flow into a number of streams. By changing the geometries of the fluidic channels we
can create defined fluidic resistors and thus defined flowrate variations across an array.
In this problem we will examine how to do this, and, importantly, how robust those
predetermined variations are to process non-uniformities.
Given an input volumetric flowrate of water (η =0.001 Pa-s at 100 μl/min) to the
network shown in the diagram, we would like to establish a 1:3:9:27 ratio in volumetric
flowrate across the array (Q1:Q4). The height of the channels is fixed at 50 μm, while
the width must be ≥150 μm. The pressure at the channel exits is fixed and the maximum
pressure drop across the channels must be ≤1 psi.
mechanicalengineeringassignmenthelp.com
Finally, we want to minimize the total chip area. Approximating the area of each section
n as 2lnwn2 (to incorporate spaces between adjacent channels), we must keep the total
area of the resistive channels to <25 mm2. You can assume parallel-plate poiseuille glow.
a) Determine a set of geometries (l1, w1, l2, w2, etc.) of the channels that meets the above
requirements, and then calculate the flow in each channel and the pressure drop across the
channels.
mechanicalengineeringassignmenthelp.com
b) Now assume that there is a fabrication variation across the chip, such that the channel
height varies 10% across the chip. Assume first that the channel height increases as one
goes from channels 1-4, and then that the channel height decreases as one goes from
channels 1-4. How does each of these variations change the flowrate ratios across the
array? You may assume that the channel height is constant for a given section, and
increases stepwise from section to section.
mechanicalengineeringassignmenthelp.com
Problem 13.9 (3pts): Calculating fluidic resistances
a). For a parallel-plate Poiseuille flow approximation, the flow rate and the pressure
drop is related by
Using the e→V convention, the fluidic resistance of the channel is
b). We can express the general relation between flow and pressure to be,
mechanicalengineeringassignmenthelp.com
where we have used A to denote,
For Poiseuille flow, pressure drop is linear with length, so we have and hence,
The fluidic resistance of the channel is
Using Matlab, we can find that A converges at 0.5783, substitute in, we have
mechanicalengineeringassignmenthelp.com
The error is
c). As we derived from b), the error can be expressed by A, where
Using Matlab, it can be determined that the min W/h ratio for error to be less than 10%
is 6.305.
mechanicalengineeringassignmenthelp.com
The Matlab script is posted here:
clear all;
close all;
format long eng
L=1E-2;
visc=0.001*(1/60);
W=50E-6;
h=linspace(50E-6,5E-6);
h=h';
mechanicalengineeringassignmenthelp.com
Wperh=zeros(100,1);
Error=zeros(100,1);
Rpoisfull=zeros(100,1);
Rpois=zeros(100,1); for m=1:100
h_now=h(m,1);
Wperh(m,1)=W/h_now;
for i=0:24
Aterm(i+1,1)=((192*h_now)/(pi^5*W))*(tanh((2*i+1)*(pi/2 ...
)*(W/h_now))/(2*i+1)^5);
end
A=sum(Aterm);
Rpoisfull(m,1)=(12*visc*L*10*1E-6)/((1-A)*(W*10*(h_now*10)^3));
Rpois(m,1)=(12*visc*L*10*1E-6)/(W*10*(h_now*10)^3);
Error(m,1)=(Rpoisfull(m,1)-Rpois(m,1))/Rpoisfull(m,1);]
end
plot(Wperh,Error)
ylabel('Error')
xlabel('Channel width and height ratio W/h')
mechanicalengineeringassignmenthelp.com
Problem 13.10 (4 pts): Timescales in microfluidic flows
a). The Navier –Stokes equation is
Assuming incompressible flow and neglecting gravity,
∇.U = 0 and ρmg = 0
The equation becomes
b). Substitute the following expressions into the equation:
mechanicalengineeringassignmenthelp.com
We have
c).
mechanicalengineeringassignmenthelp.com
τc is the time scale of convective flow and τv is the time scale of viscous flow.
d). Applying a step input of pressure, the flow near the wall can not violate the no-slip
condition. The time scale to establish steady flow is determined by the visous flow time
scale. Using a length scale on the order of the hydraulic diameter, we have
Problem 13.11 (3pts): Microfluidic networks and fabrication variations
mechanicalengineeringassignmenthelp.com
a). First let us summarize the constraints of the design of the fluidic channels:
1. Total volumetric flow rate is 100 µL/min;
2. Flow ratio across the four channels are Q1 : Q2: Q3: Q4 = 1: 3: 9 : 27 ;
3. Channel height h is fixed at 50 µm; width w ≥ 150 um and total area A ≤ 25
mm2 ;
4. The maximum pressure at the inlet must be ≤1 psi.
Assuming parallel-plate Poiseuille flow, the flow resistance is,
The volumetric flow rate across each channel can be found to be,
Q1 = 2.5, Q2 = 7.5, Q3 = 22.5, Q4 = 67.5 µL / min
Since the pressure drop across the channels is the same (both the inlets and outlets are
connected), we can derive that,
R1 : R2 : R3 : R4 = 27 : 9 : 3:1
mechanicalengineeringassignmenthelp.com
From total area constraint, we can write,
2(ℓ1w1 + ℓ2w2 + ℓ3w3 + ℓ4w4 ) < Amax
To minimize the area, we can set the width at its minimum, w = 150 um , and we can
reduce the above expression in terms of ℓ1,
We can choose a set of channel dimensions, such that, ℓ1 = 54 mm , ℓ2 = 18 mm, ℓ3 = 6
mmℓ4, = 2 mm . The pressure drop across the channel is,
So the constraint on the inlet pressure is met.
mechanicalengineeringassignmenthelp.com
b). Now we assume that the channel height varies 10% across the chip in stepwise
fashion and we will examine two cases: case 1, the height increases from 50 µm for
channel 1, to 55 µm for channel 4, and case 2, the height decreases from 50 µm to 45
µm.
Since all the channels are designed to have the same width and same pressure
drop, the flow rate is only a function of length and height,
Therefore, the flow resistance ratios for both cases are,
case 1 Q1 : Q2 : Q3 : Q4 =
case 2 Q1 : Q2 : Q3 : Q4 =
As expected, since Q is proportional to the cube of the height, the flow rate is very
sensitive to any height variation. And a 10% height variation across the chip can cause
the flow rate to vary from –26% to 33% in this case for the longest channel.
mechanicalengineeringassignmenthelp.com

Contenu connexe

Similaire à Microelectromechanical Assignment Help.com_Microelectromechanical Assignment Help.pptx

Supersonic_Ramji_Amit_10241445
Supersonic_Ramji_Amit_10241445Supersonic_Ramji_Amit_10241445
Supersonic_Ramji_Amit_10241445
Amit Ramji ✈
 
EEE 117L Network Analysis Laboratory Lab 1 1
EEE 117L Network Analysis Laboratory  Lab 1     1  EEE 117L Network Analysis Laboratory  Lab 1     1
EEE 117L Network Analysis Laboratory Lab 1 1
EvonCanales257
 
Lec-10-Week (7)( Hydraulics of water Distribution System).pdf
Lec-10-Week (7)( Hydraulics of water Distribution System).pdfLec-10-Week (7)( Hydraulics of water Distribution System).pdf
Lec-10-Week (7)( Hydraulics of water Distribution System).pdf
KkkhanHan
 
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Kellen Betts
 

Similaire à Microelectromechanical Assignment Help.com_Microelectromechanical Assignment Help.pptx (20)

009a (PPT) Viscous Flow-1 New.pdf .
009a (PPT) Viscous Flow-1 New.pdf          .009a (PPT) Viscous Flow-1 New.pdf          .
009a (PPT) Viscous Flow-1 New.pdf .
 
Supersonic_Ramji_Amit_10241445
Supersonic_Ramji_Amit_10241445Supersonic_Ramji_Amit_10241445
Supersonic_Ramji_Amit_10241445
 
Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes Flow of incompressible fluids through pipes
Flow of incompressible fluids through pipes
 
Microelectromechanical Assignment Help
Microelectromechanical Assignment HelpMicroelectromechanical Assignment Help
Microelectromechanical Assignment Help
 
pipe lines lec 1.pptx
pipe lines lec 1.pptxpipe lines lec 1.pptx
pipe lines lec 1.pptx
 
Momentum equation.pdf
 Momentum equation.pdf Momentum equation.pdf
Momentum equation.pdf
 
Abaqus CFD-Sample Problems
Abaqus CFD-Sample ProblemsAbaqus CFD-Sample Problems
Abaqus CFD-Sample Problems
 
Rc delay modelling in vlsi
Rc delay modelling in vlsiRc delay modelling in vlsi
Rc delay modelling in vlsi
 
008
008008
008
 
Ejercicio Red Ramificada
Ejercicio Red RamificadaEjercicio Red Ramificada
Ejercicio Red Ramificada
 
IEEE 2004
IEEE 2004IEEE 2004
IEEE 2004
 
CMIA paper
CMIA paperCMIA paper
CMIA paper
 
EEE 117L Network Analysis Laboratory Lab 1 1
EEE 117L Network Analysis Laboratory  Lab 1     1  EEE 117L Network Analysis Laboratory  Lab 1     1
EEE 117L Network Analysis Laboratory Lab 1 1
 
Hardycross method
Hardycross methodHardycross method
Hardycross method
 
Lecture 2 manning
Lecture     2  manning   Lecture     2  manning
Lecture 2 manning
 
Lec-10-Week (7)( Hydraulics of water Distribution System).pdf
Lec-10-Week (7)( Hydraulics of water Distribution System).pdfLec-10-Week (7)( Hydraulics of water Distribution System).pdf
Lec-10-Week (7)( Hydraulics of water Distribution System).pdf
 
Oscilloscope tutorial -phasemeasurement
Oscilloscope tutorial -phasemeasurementOscilloscope tutorial -phasemeasurement
Oscilloscope tutorial -phasemeasurement
 
A RAIL-TO-RAIL HIGH SPEED CLASS-AB CMOS BUFFER WITH LOW POWER AND ENHANCED SL...
A RAIL-TO-RAIL HIGH SPEED CLASS-AB CMOS BUFFER WITH LOW POWER AND ENHANCED SL...A RAIL-TO-RAIL HIGH SPEED CLASS-AB CMOS BUFFER WITH LOW POWER AND ENHANCED SL...
A RAIL-TO-RAIL HIGH SPEED CLASS-AB CMOS BUFFER WITH LOW POWER AND ENHANCED SL...
 
Vol. 1 (1), 2014, 7–11
Vol. 1 (1), 2014, 7–11Vol. 1 (1), 2014, 7–11
Vol. 1 (1), 2014, 7–11
 
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
Multi-Fidelity Optimization of a High Speed, Foil-Assisted Catamaran for Low ...
 

Dernier

Dernier (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
latest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answerslatest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answers
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & Systems
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health Education
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 

Microelectromechanical Assignment Help.com_Microelectromechanical Assignment Help.pptx

  • 1. For any Assignment related queries, Call us at : - +1 678 648 4277 You can mail us at : - info@mechanicalengineeringassignmenthelp.com or reach us at : - https://www.mechanicalengineeringassignmenthelp.com/
  • 2. Problem 1: Calculating fluidic resistances Here we will examine the fluidic resistances of square versus rectangular channels. Assume a channel with crosssection of 50 μm x 50 μm and length L=1 cm, and that the working fluid is water. a) Using a parallel-plate Poiseuille flow approximation, calculate the fluidic resistance of the channel in Pa/(μl/min). b) The parallel-plate flow approximation is not strictly valid when the width of the channel approaches the height. A more general relation between flow and pressure for a rectangular channel of width W and height h (where W≥h), is Use this relation to calculate the resistance of the channel. What is the error of the parallel-plate approximation? mechanicalengineeringassignmenthelp.com
  • 3. c) Determine analytically or numerically the minimum W/h where the Poiseuille approximation has a 10% deviation from the exact solution. Problem 2: Timescales in microfluidic flows One commonly assumes that in the creeping flow regime encountered in microfluidics, flows start and stop instantaneously. However, what happens in the real world, where Re is not exactly zero? In this problem we will find out. a) First, we will derive the relevant dimensionless quantities. Starting from the incompressible Navier-Stokes equation in the text (Eq. 13.25), assume incompressible flow, neglect gravity, and expand out the total derivative. What is the N-S equation now? b) Next, non-dimensionalize the N-S equation using the following relations: where U0, τ, and L are a characteristic velocity, timescale, and length scale for the flow. Place the nondimensional N-S equation in the form of mechanicalengineeringassignmenthelp.com
  • 4. What are Re and Sr? One now sees how the L in the Reynolds number comes from the characteristic dimension over which spatial change occurs (e.g., from L∇=∇~ ). c) In creeping flow we can neglect the convective term leading to If Re<<Sr we return to our quasistatic creeping flow equation where time doesn't matter. Let's examine this coefficient. The Re and Sr numbers can be represented as ratios of timescales. First, express Sr and Re as What are τc and τv? What do they represent? The ratio is then mechanicalengineeringassignmenthelp.com
  • 5. and thus the flow is quasistatic when τv is much less than the timescale imposed by the external force. d) Suppose you have a square 100 μm × 100 μm microchannel filled with water (η =10-3 Pa-s, ρm =1000 kg/m3 ). You apply a step input of pressure. Approximately how long will it take for the flow to reach steady state? Which timescale dominates the flow development in this case? Problem 3: Microfluidic networks and fabrication variations We commonly create microfluidic networks that take an input flow and distribute that flow into a number of streams. By changing the geometries of the fluidic channels we can create defined fluidic resistors and thus defined flowrate variations across an array. In this problem we will examine how to do this, and, importantly, how robust those predetermined variations are to process non-uniformities. Given an input volumetric flowrate of water (η =0.001 Pa-s at 100 μl/min) to the network shown in the diagram, we would like to establish a 1:3:9:27 ratio in volumetric flowrate across the array (Q1:Q4). The height of the channels is fixed at 50 μm, while the width must be ≥150 μm. The pressure at the channel exits is fixed and the maximum pressure drop across the channels must be ≤1 psi. mechanicalengineeringassignmenthelp.com
  • 6. Finally, we want to minimize the total chip area. Approximating the area of each section n as 2lnwn2 (to incorporate spaces between adjacent channels), we must keep the total area of the resistive channels to <25 mm2. You can assume parallel-plate poiseuille glow. a) Determine a set of geometries (l1, w1, l2, w2, etc.) of the channels that meets the above requirements, and then calculate the flow in each channel and the pressure drop across the channels. mechanicalengineeringassignmenthelp.com
  • 7. b) Now assume that there is a fabrication variation across the chip, such that the channel height varies 10% across the chip. Assume first that the channel height increases as one goes from channels 1-4, and then that the channel height decreases as one goes from channels 1-4. How does each of these variations change the flowrate ratios across the array? You may assume that the channel height is constant for a given section, and increases stepwise from section to section. mechanicalengineeringassignmenthelp.com
  • 8. Problem 13.9 (3pts): Calculating fluidic resistances a). For a parallel-plate Poiseuille flow approximation, the flow rate and the pressure drop is related by Using the e→V convention, the fluidic resistance of the channel is b). We can express the general relation between flow and pressure to be, mechanicalengineeringassignmenthelp.com
  • 9. where we have used A to denote, For Poiseuille flow, pressure drop is linear with length, so we have and hence, The fluidic resistance of the channel is Using Matlab, we can find that A converges at 0.5783, substitute in, we have mechanicalengineeringassignmenthelp.com
  • 10. The error is c). As we derived from b), the error can be expressed by A, where Using Matlab, it can be determined that the min W/h ratio for error to be less than 10% is 6.305. mechanicalengineeringassignmenthelp.com
  • 11. The Matlab script is posted here: clear all; close all; format long eng L=1E-2; visc=0.001*(1/60); W=50E-6; h=linspace(50E-6,5E-6); h=h'; mechanicalengineeringassignmenthelp.com
  • 12. Wperh=zeros(100,1); Error=zeros(100,1); Rpoisfull=zeros(100,1); Rpois=zeros(100,1); for m=1:100 h_now=h(m,1); Wperh(m,1)=W/h_now; for i=0:24 Aterm(i+1,1)=((192*h_now)/(pi^5*W))*(tanh((2*i+1)*(pi/2 ... )*(W/h_now))/(2*i+1)^5); end A=sum(Aterm); Rpoisfull(m,1)=(12*visc*L*10*1E-6)/((1-A)*(W*10*(h_now*10)^3)); Rpois(m,1)=(12*visc*L*10*1E-6)/(W*10*(h_now*10)^3); Error(m,1)=(Rpoisfull(m,1)-Rpois(m,1))/Rpoisfull(m,1);] end plot(Wperh,Error) ylabel('Error') xlabel('Channel width and height ratio W/h') mechanicalengineeringassignmenthelp.com
  • 13. Problem 13.10 (4 pts): Timescales in microfluidic flows a). The Navier –Stokes equation is Assuming incompressible flow and neglecting gravity, ∇.U = 0 and ρmg = 0 The equation becomes b). Substitute the following expressions into the equation: mechanicalengineeringassignmenthelp.com
  • 15. τc is the time scale of convective flow and τv is the time scale of viscous flow. d). Applying a step input of pressure, the flow near the wall can not violate the no-slip condition. The time scale to establish steady flow is determined by the visous flow time scale. Using a length scale on the order of the hydraulic diameter, we have Problem 13.11 (3pts): Microfluidic networks and fabrication variations mechanicalengineeringassignmenthelp.com
  • 16. a). First let us summarize the constraints of the design of the fluidic channels: 1. Total volumetric flow rate is 100 µL/min; 2. Flow ratio across the four channels are Q1 : Q2: Q3: Q4 = 1: 3: 9 : 27 ; 3. Channel height h is fixed at 50 µm; width w ≥ 150 um and total area A ≤ 25 mm2 ; 4. The maximum pressure at the inlet must be ≤1 psi. Assuming parallel-plate Poiseuille flow, the flow resistance is, The volumetric flow rate across each channel can be found to be, Q1 = 2.5, Q2 = 7.5, Q3 = 22.5, Q4 = 67.5 µL / min Since the pressure drop across the channels is the same (both the inlets and outlets are connected), we can derive that, R1 : R2 : R3 : R4 = 27 : 9 : 3:1 mechanicalengineeringassignmenthelp.com
  • 17. From total area constraint, we can write, 2(ℓ1w1 + ℓ2w2 + ℓ3w3 + ℓ4w4 ) < Amax To minimize the area, we can set the width at its minimum, w = 150 um , and we can reduce the above expression in terms of ℓ1, We can choose a set of channel dimensions, such that, ℓ1 = 54 mm , ℓ2 = 18 mm, ℓ3 = 6 mmℓ4, = 2 mm . The pressure drop across the channel is, So the constraint on the inlet pressure is met. mechanicalengineeringassignmenthelp.com
  • 18. b). Now we assume that the channel height varies 10% across the chip in stepwise fashion and we will examine two cases: case 1, the height increases from 50 µm for channel 1, to 55 µm for channel 4, and case 2, the height decreases from 50 µm to 45 µm. Since all the channels are designed to have the same width and same pressure drop, the flow rate is only a function of length and height, Therefore, the flow resistance ratios for both cases are, case 1 Q1 : Q2 : Q3 : Q4 = case 2 Q1 : Q2 : Q3 : Q4 = As expected, since Q is proportional to the cube of the height, the flow rate is very sensitive to any height variation. And a 10% height variation across the chip can cause the flow rate to vary from –26% to 33% in this case for the longest channel. mechanicalengineeringassignmenthelp.com