Currently I am working on numerical modeling of 2-dimensional magnetotelluric data using finite element method. To generate a forward model, I discretize my model area (200000,100000) meters using a partial differential equation toolbox given below:
gd=[2 4 -100000 100000 100000 -100000 0 0 -100000 -100000];
[dl,bt]=decsg(gd');
wgeom(dl,'vrg');
[p e t]=initmesh('vrg');
figure
pdeplot(p,e,t);
xlabel('Distance(m)','fontsize',12);
ylabel('Depth(m)','fontsize',12);
axis image;
I want to generate model area which element size will increase with depth or with which depends on conductivity distribution of an element.
Please look at the images in the attachment .