This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_composition_list.m
49 lines (42 loc) · 1.63 KB
/
get_composition_list.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
function composition_list = get_composition_list( granulometry_table )
%GET_COMPOSITION_LIST Retorna la lista de composición de gravas, finos y
%arenas para una tabla granulométrica.
%
% COMPOSITION_LIST=GET_COMPOSITION_LIST(GRANULOMETRY_TABLE) retorna la
% lista de composición [gravas, arena, fino) a partir de una tabla de
% granulometría retornada de la funcipón create_granulometry_table.
%
% granulometry_table: Tabla granulométrica resultante de
% create_granulometry_table.
decr = true; % Indica que se decrece en número de malla
% Se obtiene el total de gravas
try
total_gravel = 0;
for i=1:length(granulometry_table)-1
if granulometry_table{i}(1) < granulometry_table{i+1}(1)
decr=false;
end
if and(granulometry_table{i+1}(1)>4, ~decr);
break
end
total_gravel = total_gravel + granulometry_table{i}(4);
end
catch
disp('Error when calculating total gravel in granulometry table.');
end
% Se pobtiene el total de arenas
try
total_f = 0;
for i=1:length(granulometry_table)
if or(granulometry_table{i}(1)>200,granulometry_table{i}(1)==0)
total_f = total_f + granulometry_table{i}(4);
end
end
catch
error('Error when calculating total sand in granulometry table.');
end
% Se calcula el total de finos
total_sand = 100 - (total_f + total_gravel);
% Se retorna la lista
composition_list = [total_gravel, total_sand, total_f];
end