[13730] | 1 | function plot_BC(md,options,width,i,data)
|
---|
[3247] | 2 |
|
---|
[4682] | 3 | %plot neuman
|
---|
[19203] | 4 | h0 = plot_icefront(md,options,width,i,data);
|
---|
[3247] | 5 |
|
---|
| 6 | hold on
|
---|
| 7 |
|
---|
[18157] | 8 | [x y z elements is2d isplanet]=processmesh(md,[],options);
|
---|
[21759] | 9 | spcvx=processdata(md,md.stressbalance.spcvx,options);
|
---|
| 10 | spcvy=processdata(md,md.stressbalance.spcvy,options);
|
---|
| 11 | spcvz=processdata(md,md.stressbalance.spcvz,options);
|
---|
| 12 | nbv = numel(x);
|
---|
[18157] | 13 |
|
---|
[4682] | 14 | %plot dirichlets
|
---|
[14286] | 15 | dirichleton=getfieldvalue(options,'dirichlet','on');
|
---|
| 16 | if strcmpi(dirichleton,'on'),
|
---|
| 17 | h1=plot3(...
|
---|
[21759] | 18 | x(find(~isnan(spcvx(1:nbv,1)))),...
|
---|
| 19 | y(find(~isnan(spcvx(1:nbv,1)))),...
|
---|
| 20 | z(find(~isnan(spcvx(1:nbv,1)))),...
|
---|
[14286] | 21 | 'ro','MarkerSize',14,'MarkerFaceColor','r');
|
---|
| 22 | h2=plot3(...
|
---|
[21759] | 23 | x(find(~isnan(spcvy(1:nbv,1)))),...
|
---|
| 24 | y(find(~isnan(spcvy(1:nbv,1)))),...
|
---|
| 25 | z(find(~isnan(spcvy(1:nbv,1)))),...
|
---|
[14286] | 26 | 'bo','MarkerSize',10,'MarkerFaceColor','b');
|
---|
| 27 | h3=plot3(...
|
---|
[21759] | 28 | x(find(~isnan(spcvz(1:nbv,1)))),...
|
---|
| 29 | y(find(~isnan(spcvz(1:nbv,1)))),...
|
---|
| 30 | z(find(~isnan(spcvz(1:nbv,1)))),...
|
---|
[14286] | 31 | 'yo','MarkerSize',6 ,'MarkerFaceColor','y');
|
---|
| 32 | end
|
---|
[3247] | 33 |
|
---|
[19203] | 34 | strings = {'Neumann'};
|
---|
| 35 | if ~isempty(h1), strings{end+1} = 'vx Dirichlet'; end
|
---|
| 36 | if ~isempty(h2), strings{end+1} = 'vy Dirichlet'; end
|
---|
| 37 | if ~isempty(h3), strings{end+1} = 'vz Dirichlet'; end
|
---|
[3247] | 38 |
|
---|
[19203] | 39 | legend([h0,h1,h2,h3],strings,'location','NorthEast');
|
---|
| 40 |
|
---|
[4682] | 41 | hold off
|
---|
[11276] | 42 |
|
---|
| 43 | %apply options
|
---|
| 44 | options=addfielddefault(options,'title','Boundary conditions');
|
---|
| 45 | options=addfielddefault(options,'colorbar',0);
|
---|
| 46 | applyoptions(md,[],options);
|
---|