Plotting the solution to the Laplace equation
24 ビュー (過去 30 日間)
古いコメントを表示
Hi guys, I am trying to plot the solution to a PDE. I was given the laplace equation
where u(x,y) is ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/212518/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/212517/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/212518/image.png)
L= pi, and H= pi/4. I want to plot the solution in 2D. This is what I have so far.
for c = 1:10
g = sin(pi.*c);
for n=1: 10
L = pi;
H= L/4;
for x = 0:L
integral = g*sin((n.*pi.*x)/L);
end
an = 2/(n.*pi*sinh((n.*pi*H)/2)).*integral;
uxy = an*sin((n.*pi.*c)/L)*cosh(n.*pi*(y-H)/2);
end
end
figure;
plot(x,uxy)
When I run it, it gives me a blank plot. Any tips on how to fix this or fix some of my coding errors? It would be much appreciated!
1 件のコメント
回答 (1 件)
Agnish Dutta
2019 年 4 月 11 日
I suggest using the symbolic mathematics toolbox which provides functions for solving, plotting, and manipulating symbolic math equations.
"u(x, y)" seems like a bivariate function. To plot such a function, have a look at the "Generate surfaces z=f(x,y) without meshgrid" section of the following document:
You will find multiple other tools for plotting functions of different types in the above page.
Also, please have a look at the following MATLAB answers page containing a similar problem:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Geometry and Mesh についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!