FelipeNeto2

function [sol_ana]=teste(boundary_condition,peclet,x,t) % An analytical solution of the diffusioncon

Mar 19th, 2024 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.54 KB | None | 0 0
  1. % Parâmetros
  2. U0 = 0;       % Condição de contorno em x=0 (ppm ou mol/m3)
  3. UL = 0;       % Condição inicial (ppm ou mol/m3)
  4. phi = 1;    % Porosidade
  5. vel = 1;      % Velocidade (m/s)
  6. D = 1;      % Coeficiente de difusão (m2/s)
  7. L = 1;        % Comprimento característico (m)
  8. x = 0:(1/100):L; % Malha espacial (m)
  9. t = 0:(1/100):1; % Tempo específico (s)
  10.  
  11. % Chamada da função
  12. solucao = teste1(U0, UL, phi, vel, D, L, x, 1);
  13.  
  14. % Plot
  15. plot(x, solucao);
  16. xlabel('x');
  17. ylabel('C');
  18. title(sprintf('Solução analítica no tempo %.2f', 1));
  19.  
Add Comment
Please, Sign In to add comment