Mass Transfer - Forced Convection Boundary Condition
2 次查看(过去 30 天)
显示 更早的评论
I am trying to apply a forced convection boundary conditon to a time-dependent PDE. The BC I want to apply is:
The mass transfer coefficient, density, diffusion coefficient, and Xa are all assumed to be constant. What is the best way to go about doing this?
I set up a Neumann BC with
I was able to get a solution but wasn't sure if I set this up appropiately.
I also tried to set up a Dirichlet BC with
applyBoundaryCondition(model,'dirichlet','Edge',4,'r',@fun1,'h',1);
function BC = fun1(~,state)
kc = 0.0021;
Xa = 3*10^-6;
rho_s = 1500;
Ds = 4.1*10^-4;
BC = Xa - (rho_s*Ds/kc).*state.uy;
end
but I wasn't able to get a solution. Does anyone have any comments if either of these approaches are appropiate or, if not, how should I approach this probelm?
0 个评论
采纳的回答
Ravi Kumar
2020-2-25
Your Neumann BC approach is the right option. But be aware that you can only model mass diffusion within domain, forced convection at the boundary is fine.
Regards,
Ravu
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Boundary Conditions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!