forked from gcpeixoto/gawps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex2.m
59 lines (35 loc) · 1.34 KB
/
ex2.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
50
51
52
53
54
55
56
57
58
59
% GAWPS - Graphical Analysis for Well Placement Strategy
% Model UNISIM-II-D (13,31,:) and (26,42,:)
%{
UFPB - Federal University of Paraiba
LAMEP - Petroleum Engineering Modelling Laboratory
Thiago Ney Evaristo Rodrigues
Dr. Gustavo Charles Peixoto de Oliveira
This file is part of the tool GAWPS.
GAWPS is a set of codes for simulating wells using graphical methods for
characterizing oil reservoirs, based on MRST (MATLAB Reservoir Simulation
Toolbox).
%}
clear
close all
clc
%% Read and Process of Synthetic Model
coord = [13, 31; 26 42];
[G, gw, rock, indw] = resmodel(coord, 'UNISIM2D');
%% Petrophysics Methods
% Winland Plot
wp = winland(rock.poro, rock.perm, indw);
% Classical Lorenz Plot
[lp.F, lp.Lc] = classiclorenz(G, rock.perm, indw);
% Stratigraphic Modified Lorenz Plot
[smlp.S, smlp.F] = stratigraphiclorenz(G, rock.poro, rock.perm, indw);
% Modified Lorenz Plot
% [ssp.df, ssp.indi] = derivativesmlp(G, smlp.S, smlp.F, indw, 5);
% [mlp.S, mlp.F, mlp.FUS, mlp.categ] = modifiedlorenz(smlp.S, smlp.F, gw, ...
% ssp.indi);
% Normalized Cumulative Flow Capacity
ncfc = flowcapacity(G, rock.perm, indw);
% Normalized RQI
% nrqi = normalizedrqi(G, rock.poro, rock.perm, indw);
% Histogram and Normal Probability Plot
fzi = normalprobability(rock.poro, rock.perm, indw);