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

Update method names in plot_blocking_diag.m

parent fc672e5c
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,8 @@ ccdfm = csvread('ccdfm/ccdfm_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( ccdfm(:, 3), ccdfm(:, 1), 'Color', 'c', 'LineWidth', 1);
% MPFA
ccdfm = csvread('ccdfm/mpfa_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( ccdfm(:, 3), ccdfm(:, 1), 'Color', [0 .5 0], 'LineWidth', 1);
mpfa = csvread('ccdfm/mpfa_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( mpfa(:, 3), mpfa(:, 1), 'Color', [0 .5 0], 'LineWidth', 1);
% EDFM
......@@ -41,4 +41,4 @@ xlabel('arc length', 'FontSize', 12, 'FontWeight', 'bold', 'Color', 'k');
ylabel('pressure', 'FontSize', 12, 'FontWeight', 'bold', 'Color', 'k');
xlim([0 1.2728]);
set(gca, 'FontSize', 12);
legend('reference', 'Box-DFM', 'TPFA', 'MPFA', 'EDFM', 'flux-mortar', '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