Parallel Plate Microfluidics velocity problem

조회 수: 8 (최근 30일)
Joseph Gooch
Joseph Gooch 2020년 1월 24일
답변: Gaurav Garg 2020년 2월 3일
How do I graph this equation of y vs. u(y,0) for a parallel plate problem
P = 10;
L = 0.02;
h = 30*10^-6;
u = 0.001;
%% Equation: u(y,0) = P/(2*u*L)*(y^2-h^2);
fplot(@(y) P/(2*u*L)*(y^2-h^2), [-1.5*10^-4 1.5*10^-4])
The resulting graph is supposed to return a straight line according to the answer solution guide, I can only get it to return a parabolic graaph

답변 (1개)

Gaurav Garg
Gaurav Garg 2020년 2월 3일
Hi,
Though you wish to plot a straight line, you have plotted (y^2) which means you are supposed to get a parabolic graph.

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by