Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
fracture-flow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
benchmarks
fracture-flow
Commits
a1c7b565
Commit
a1c7b565
authored
8 years ago
by
Ivar Stefansson
Browse files
Options
Downloads
Patches
Plain Diff
Delete EvaluateAllFractures.m
parent
0df36c1b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/EvaluateAllFractures.m
+0
-32
0 additions, 32 deletions
scripts/EvaluateAllFractures.m
with
0 additions
and
32 deletions
scripts/EvaluateAllFractures.m
deleted
100644 → 0
+
0
−
32
View file @
0df36c1b
% Evaluates the norm in each of the fractures and adds the computed values
% to the input file. This file must contain a cell array with fracxandp for
% each of the fractures, see the Description for details on how each
% fracxandp should be constructed.
clear
load
geiger_permeable_reference
.
mat
load
anna_reference_lefttoright
.
mat
% load geiger_blocking_reference.mat
%load Hydrocoin_reference.mat
%coarsefile = 'coarse file.mat';
%coarsefile = '../hydrocoin/results/edfm_fractures.mat';
coarsefile
=
'../geiger/results/permeable_edfm.mat'
;
%coarsefile = '../geiger/results/blocking_edfm.mat';
coarsefile
=
'/home/elle/Dropbox/2015-fractures-comparison/new_case_4/results_bis/edfm_fractures.mat'
;
load
(
coarsefile
)
nfrac
=
length
(
fracxandp
);
Erel_f_vec
=
zeros
(
nfrac
,
1
);
E2_f
=
zeros
(
nfrac
,
1
);
dP2_f
=
zeros
(
nfrac
,
1
);
FRAC
=
true
;
%%
for
i
=
1
:
nfrac
xandp
=
fracxandp
{
i
};
[
Erel_f_vec
(
i
),
E2_f
(
i
),
dP2_f
(
i
)]
=
LineNormFucntion
(
xandp
,
p
,
t
,
x
,
FRAC
);
end
Erel_f
=
sqrt
(
sum
(
E2_f
)/
sum
(
dP2_f
))
save
(
coarsefile
,
'Erel_f'
,
'E2_f'
,
'dP2_f'
,
'-append'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment