Skip to content
Snippets Groups Projects
Commit 6506552d authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

Fix plot_blocking_diag.m

parent 26fd6c1e
No related branches found
No related tags found
No related merge requests found
......@@ -13,15 +13,15 @@ plot(dfm(:, 14), dfm(:, 4), 'Color', 'g', 'LineWidth', 1);
% CC-DFM
ccdfm = csvread('ccdfm/ccdfm_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( sqrt(ccdfm(:, 4).^2 + ccdfm(:,5).^2)-0.1, ccdfm(:, 1), 'Color', 'c', 'LineWidth', 1);
plot( ccdfm(:, 3), ccdfm(:, 1), 'Color', 'c', 'LineWidth', 1);
% EDFM
edfm = csvread('edfm/edfm_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( sqrt(edfm(:, 4).^2 + edfm(:,5).^2)-0.1, edfm(:, 1), 'Color', 'r', 'LineWidth', 1);
plot( edfm(:, 3), edfm(:, 1), 'Color', 'r', 'LineWidth', 1);
% Mortar-DFM
mortar = csvread('mortardfm/mortardfm_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
plot( sqrt(mortar(:, 4).^2 + mortar(:,5).^2)-0.1, mortar(:, 1), 'Color', [1 0.7 0], 'LineWidth', 1);
plot( mortar(:, 3), mortar(:, 1), 'Color', [1 0.7 0], 'LineWidth', 1);
% P-XFEM
p_xfem = csvread('pxfem/pxfem_geiger_blocking_0_0.1_to_0.9_1.csv', 1, 0);
......
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