Skip to content
Snippets Groups Projects
Commit 84942c3b authored by Ivar Stefansson's avatar Ivar Stefansson
Browse files

Update plot_depth_200.m with MPFA

parent 8b587893
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,11 @@ box_dfm(:, 15) = box_dfm(:, 15)/1000;
plot(box_dfm(:, 15), box_dfm(:, 4), 'Color', 'g', 'LineWidth', 1, 'Linestyle', '-');
% CC-DFM
ccdfm = csvread('ccdfm/mpfa_hydrocoin_200.csv', 1, 0);
ccdfm(:, 4) = ccdfm(:, 4)/1000.0;
plot(ccdfm(:, 4), ccdfm(:, 1), 'Linestyle', '-', 'Color', [0 .5 0], 'LineWidth', 1);
% MPFA
ccdfm = csvread('ccdfm/ccdfm_hydrocoin_200.csv', 1, 0);
ccdfm(:, 4) = ccdfm(:, 4)/1000.0;
plot(ccdfm(:, 4), ccdfm(:, 1), 'Linestyle', '-', 'Color', 'c', 'LineWidth', 1);
......@@ -43,4 +48,4 @@ xlabel('arc length [km]', 'FontSize', 12, 'FontWeight', 'bold', 'Color', 'k');
ylabel('piezometric head [m]', 'FontSize', 12, 'FontWeight', 'bold', 'Color', 'k');
set(gca, 'FontSize', 12);
xlim([0 1.6]);
legend('reference', 'Box-DFM', 'CC-DFM', 'EDFM', 'mortar-DFM', 'P-XFEM', 'D-XFEM', 'location', 'northeastoutside');
legend('Reference', 'Box', 'TPFA', 'MPFA', 'EDFM', 'Flux-Mortar', 'P-XFEM', 'D-XFEM', 'location', 'northeastoutside');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment