How to create the two-layer grid?

2 次查看(过去 30 天)
vaya putra
vaya putra 2017-11-8
评论: vaya putra 2017-11-8
I find codding but in my mind it's not explained clearly that it is two layers.
%%Create the grid: a simple cartesian grid, 100m x 100m and 50 blocks on x
% and y directions.
% Two layer grid
x_size = 100;
y_size = 100;
z_size = 1;
Nx = 20;
Ny = 20;
Nz = 1;
G = cartGrid([Nx Ny Nz],[x_size y_size z_size]);
G = computeGeometry(G);
figure(1)
plotGrid(G);view(3);

回答(1 个)

KSSV
KSSV 2017-11-8
%%simple cartesian grid
L = 100 ; B = 100 ;
nx = 50 ; ny = 50 ;
x = linspace(0,L,nx) ;
y = linspace(0,B,ny) ;
[X,Y] = meshgrid(x,y) ;
mesh(X,Y)
%%Two layer grid
Z1 = zeros(size(X)) ;
Z2 = ones(size(X)) ;
figure
hold on
surf(X,Y,Z1)
surf(X,Y,Z2)
  3 个评论
KSSV
KSSV 2017-11-8
Why don't you show a pictorial example of what you want?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Special Functions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by