Wolfram言語

主な幾何学的機能

領域上の記号的な偏微分方程式

バージョン11では,領域上での境界値問題の記号解および数値解を広範に渡ってサポートするようになった.

円板でのラプラス(Laplace)方程式のディリクレ(Dirichlet)問題.

In[1]:=
Click for copyable input
leqn = Laplacian[u[x, y],{x, y}] == 0;
In[2]:=
Click for copyable input
dcond = DirichletCondition[u[x, y] == Sin[6 ArcTan[y/x]], True];
In[3]:=
Click for copyable input
\[CapitalOmega] = Disk[{0, 0}, 3];

単位円板上のをディリクレ境界条件で解く.

In[4]:=
Click for copyable input
sol = DSolveValue[{leqn, dcond}, u[x, y], {x, y} \[Element] \[CapitalOmega]]
Out[4]=
In[5]:=
Click for copyable input
Plot3D[sol, {x, y} \[Element] \[CapitalOmega], PlotRange -> All, PlotStyle -> Hue[0.5], Exclusions -> None]
Out[5]=

関連する例

de en es fr ko pt-br ru zh