フィルターのクリア

PDE solver on 2D sphere

7 ビュー (過去 30 日間)
Mark vanRossum
Mark vanRossum 2018 年 8 月 29 日
回答済み: Ravi Kumar 2018 年 9 月 4 日
Hi,
I would like to solve a spatio-temporal non-linear PDE on a 2D sphere (not a 'shell' with a finite thickness).
I see there is a number of mesh generators (cubed sphere, icosahedral grid) for Matlab, but how to integrate them with a PDE solver?
Is it possible with PDEtoolbox or other Matlab tools? Any examples?
Climate modelers probably do this all the time...
  5 件のコメント
Mark vanRossum
Mark vanRossum 2018 年 9 月 3 日
That's a good idea Torsten. Will the poles give trouble, and do I need special boundary conditions there?
Torsten
Torsten 2018 年 9 月 3 日
I don't know. My guess is that the periodic boundary condition will be the most difficult part to deal with when using the PDE toolbox.
Best wishes
Torsten.

サインインしてコメントする。

回答 (1 件)

Ravi Kumar
Ravi Kumar 2018 年 9 月 4 日
If you are referring to thin walled hollow sphere, a 3-D volume as your problem domain, then you can create such geometry in PDE Toolbox as:
radius = 1;
thickness = radius/10;
gm = multisphere([radius-thickness, radius], 'Void',[1,0]);
model = createpde;
model.Geometry = gm;
pdegplot(model,'FaceLabels','on','FaceAlpha',0.3,'CellLabels','on')
print('Hollow_Sphere','-dpng','-r200')

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by