SPE9
Ninth Comparative Solution ProjectThis example runs the model from Killough, J. E. 1995. Ninth SPE comparative solution project: A reexamination of black-oil simulation. In SPE Reservoir Simulation Symposium, 12-15 February 1995, San Antonio, Texas. SPE 29110-MS, doi: 10.2118/29110-MS Contents
Set up modelThis SPE comparative solution project consists of a water injection problem in a highly heterogenous reservoir. There is one injector and 25 producers. The problem is set up to be solved using a black-oil model. The data set we provide is a modified version of input files belonging to the course in reservoir engineering and petrophysics at NTNU (Trondheim, Norway) and available at http://www.ipt.ntnu.no/~kleppe/pub/SPE-COMPARATIVE/ECLIPSE_DATA/. We have put most of the boilerplate setup into the setupSPE9 function. mrstModule add ad-blackoil ad-core mrst-gui ad-props [G, rock, fluid, deck, state0] = setupSPE9(); % Determine the model automatically from the deck. It should be a % three-phase black oil model with gas dissoluton. model = selectModelFromDeck(G, rock, fluid, deck); % Set maximum limits on saturation, Rs and pressure changes model.drsMaxRel = .2; model.dpMaxRel = .2; model.dsMaxAbs = .05; % Show the model model %#ok, intentional display % Convert the deck schedule into a MRST schedule by parsing the wells schedule = convertDeckScheduleToMRST(G, model, rock, deck); model = ThreePhaseBlackOilModel with properties: disgas: 1 vapoil: 0 drsMaxRel: 0.2000 drsMaxAbs: Inf fluid: [1x1 struct] rock: [1x1 struct] dpMaxRel: 0.2000 dpMaxAbs: Inf dsMaxRel: Inf dsMaxAbs: 0.0500 maximumPressure: Inf minimumPressure: -Inf water: 1 gas: 1 oil: 1 saturationVarNames: {'sw' 'so' 'sg'} componentVarNames: {} wellVarNames: {'qWs' 'qOs' 'qGs' 'bhp'} useCNVConvergence: 1 toleranceCNV: 1.0000e-03 toleranceMB: 1.0000e-07 toleranceWellBHP: 100000 toleranceWellRate: 1.1574e-05 inputdata: [1x1 struct] extraStateOutput: 0 extraWellSolOutput: 1 outputFluxes: 1 upstreamWeightInjectors: 0 gravity: [0 0 9.8066] wellmodel: [1x1 WellModel] operators: [1x1 struct] nonlinearTolerance: 1.0000e-06 G: [1x1 struct] verbose: 0 stepFunctionIsLinear: 0 Set up linear solverWe proceed to setup a CPR-type solver, using the AGMG linear solver as the multigrid preconditioner. The CPR preconditioner attempts to decouple the fully implicit equation set into a pressure component and a transport component. The pressure is mathematically elliptic/parabolic in nature, and multigrid is well suited for solving these highly coupled, challenging problems. The remainder of the linear system, corresponding to the hyperbolic part of the equations is localized in nature and is primarily concerned with moving the saturation between neighboring grid blocks. Setting up a preconditioner is not strictly required to solve this problem, as the 9000 cells for a three-phase system results in linear systems with 27000 unknowns (one equation per phase, per cell). However, it does improve the solution speed and is required for larger cases, where Matlab's standard linear solvers scale poorly. try mrstModule add agmg pressureSolver = AGMGSolverAD('tolerance', 1e-4); catch pressureSolver = BackslashSolverAD(); end linsolve = CPRSolverAD('ellipticSolver', pressureSolver); Plot the rock permeabilityThe SPE9 data set has a anisotropic, inhomogenous permeability field. The vertical permeability is 1/10th of the horizontal values. We plot the permeability using a log10 transform to better see the contrast. v = [15, 30]; G = model.G; rock = model.rock; clf; plotCellData(G, log10(rock.perm(:, 1))) logColorbar(); axis tight view(v) title('SPE9 Horizontal permeability'); Plot the grid porosityclf; plotCellData(G, rock.poro) colorbar(); axis tight view(v) title('SPE9 Porosity'); Plot a single vertical set of cellsWhile the grid is structured, the grid has varying cell size along the vertical axis. To show this in detail, we plot the porosity in a single column of cells. We get the underlying logical grid and extract the subset corresponding to the first column (upper left corner of the grid). By using axis equal we see the actual aspect ratio of the cells. clf; [ii, jj] = gridLogicalIndices(G); plotCellData(G, rock.poro, ii == 1 & jj == 1) colorbar axis equal tight view(v); Plot initial saturation of oil and waterInitially, the reservoir does not contain free gas. We plot the initial saturations using the RGB plotting feature, where a three column matrix sent to plotCellData is interpreted column wise as fractions of red, green and blue respectively. Since MRST convention is to order the phases in the order WOG we need to permute the column index slightly to get red oil, blue water and green gas. s = state0.s(:, [2, 3, 1]);
clf;
plotCellData(G, s)
axis tight
view(v)
Examine gas dissolved in oil phaseEven though there is no free gas initially, there is significant amounts of gas dissolved in the oil phase. The dissolved gas will bubble into free gas when the pressure drops below the bubble point pressure. For a given pressure there is a fixed amount of gas which can be dissolved in the black-oil instantanous dissolution model. To illustrate how saturated the initial conditions are, we plot the function I.e. how close the oil phase is to being completely saturated for the current pressure. A value near 1 means that the liquid is close to saturated and any values above 1 will immediately lead to free gas appearing in the simulation model. As we can see from the figure, free gas will appear very quickly should the pressure drop. Rs_sat = model.fluid.rsSat(state0.pressure); Rs = state0.rs; clf; plotCellData(G, Rs./Rs_sat) axis tight colorbar view(v) title('Fraction of maximum gas saturation in oil phase - g(p)'); Plot the wellsSince there is a very large amount of wells, we plot the wells without any labels and simply color the injector in red and the producers in blue. W = schedule.control(1).W; sgn = [W.sign]; clf; plotGrid(G, 'FaceColor', 'none') plotWell(G, W(sgn>0), 'fontsize', 0) plotWell(G, W(sgn<0), 'fontsize', 0, 'color', 'b') axis tight view(v) Examine the scheduleThe simulation schedule consists of three control periods. All 26 wells are present during the entire simulation, but their prescribed rates will change. The injector is injecting a constant water rate, while the producers all produce a constant oil rate, letting bottom hole pressures and gas/water production vary. Since all producers have the same controls, we can examine PROD2 in detail. We plot the controls, showing that the well rate drops sharply midway during the simulation wno = find(strcmp({schedule.control(1).W.name}, 'PROD2')); % Extract controls for all timesteps P = arrayfun(@(ctrl) schedule.control(ctrl).W(wno).val, schedule.step.control); T = cumsum(schedule.step.val); stairs(T/year, P, '.-k') xlabel('Time (years)') ylabel('Oil rate (m^3/s)') title('Controls for PROD2') Examine well limitsNote that the well controls are not the only way of controlling a well. Limits can be imposed on wells, either due to physical or mathematical considerations. In this case, the fixed oil rate is the default setting, but the well will switch controls if the pressure drops below a threshold. This is found in the lims field for each well. Since this is a producer, the bhp limit is considered a lower limit, but for a producer it would be interpreted as a maximum limit to avoid either equipment failure or formation of rock fractures. clc disp(['Well limits for ', schedule.control(1).W(wno).name, ':']) disp(schedule.control(1).W(wno).lims) Well limits for PROD2: orat: -0.0028 wrat: -Inf grat: -Inf lrat: -Inf bhp: 6.8948e+06 Plot relative permeability curvesFor a three phase model we have four relative permeability curves. One for both gas and water and two curves for the oil phase. The oil relative permeability is tabulated for both water-oil and oil-gas systems. f = model.fluid; s = (0:0.05:1)'; figure; plot(s, f.krW(s), 'linewidth', 2) grid on xlabel('Water saturation'); title('Water relative permeability curve') ylabel('k_r') figure; plot(s, [f.krOW(s), f.krOG(s)], 'linewidth', 2) grid on xlabel('Oil saturation'); legend('Oil-Water system', 'Oil-Gas system', 'location', 'northwest') title('Oil relative permeability curves') ylabel('k_r') figure; plot(s, f.krG(s), 'linewidth', 2) grid on xlabel('Gas saturation'); title('Gas relative permeability curve') ylabel('k_r')
Plot three-phase relative permeabilityFor a simulation model the situation where all three phases are presen simultaneously in a single cell using some function to combine these curves in a reasonable manner, resulting in a two dimensional relative permeability model. We use the Stone I model. close all [x, y] = meshgrid(s); [krW, krO, krG] = model.relPermWOG(x, 1-x-y, y, f); figure; surf(x, y, krO) xlabel('sW') ylabel('sG') title('Oil relative permeability') view(150, 50) axis tight Plot capillary pressure curvesSPE9 contains significant capillary pressure, making the problem more nonlinear as the flow directions and phase potential gradients are highly saturation dependent. Again we have two curves, one for the contact between oil and gas and another for the water-oil contact. close all figure; [ax, l1, l2] = plotyy(s, f.pcOG(s), s, f.pcOW(1 - s)); set([l1, l2], 'LineWidth', 2); grid on legend('Oil-Gas capillary pressure', 'Oil-Water capillary pressure', 'location', 'southeast') xlabel('Oil saturation (Two phase)') Plot compressibilityThe Black-Oil model treats fluid compressibility through tabulated functions often referred to as B-factors. To find the mass of a given volume at a specific reservoir pressure , we write where refers to either the phase, V_R the volume taken up at reservoir conditions and the surface / reference density where the b-factor is 1. Note that MRST by convention only uses small b to describe fluid models. The relation between B and b is simply the reciprocal and will be calculated when needed. We begin by plotting the b-factors/compressibility for the water and gas phases. Note that the water compressibility is minimal, as water is close to incompressible in most models. The gas compressibility varies several orders of magnitude. The rock compressibility is included as well. Rock compressibility is modelling the poroelastic expansion of the pore volume available for flow. As the rock itself shrinks, more fluid can fit inside it. Note that while the curves shown are all approximately linear, there's no such requirement on the fluid model. pressure = (50:10:350)'*barsa; close all figure; plot(pressure, f.bW(pressure), 'LineWidth', 2); grid on title('Water compressibility') ylabel('b_w') xlabel('Pressure'); figure; plot(pressure, f.bG(pressure), 'LineWidth', 2); grid on title('Gas compressibility') ylabel('b_g') xlabel('Pressure'); figure; plot(pressure, f.pvMultR(pressure), 'LineWidth', 2); grid on title('Rock compressibility') ylabel('1 + c_r (p - p_s)') xlabel('Pressure');
Plot oil compressibilitySince we allow the gas phase to dissolve into the oil phase, compressibility does not only depend on the pressure: The amount of dissolved gas will also change how much the fluid can be compressed. We handle this by having saturated and undersatured tables for the compressibility. This is reflected in the figure: Unsaturated compressibility curves will diverge into from the main downwards sloping trend into almost constant curves sloping upwards. Physically, the undersaturated oil will swell as more gas is being introduced into the oil, increasing the volume more than the pressure decreases the volume of the oil itself. When the oil is completely saturated, the volume decrease is due to the gas taking up less space in the oil. rs = 0:25:320; [p_g, rs_g] = meshgrid(pressure, rs); rssat = f.rsSat(p_g); saturated = rs_g >= rssat; rs_g0 = rs_g; rs_g(saturated) = rssat(saturated); figure; plot(p_g'/barsa, f.bO(p_g, rs_g, saturated)', 'LineWidth', 2) grid on title('Oil compressibility') ylabel('b_o') xlabel('Pressure') Plot the viscosityThe viscosity can also depend on the pressure and dissolved components in a very similar manner as the compressibility. Again we note that the water phase is unaffected by the pressure, the gas changes viscosity quite a bit. As with , the oil viscosibility depends more on the amount of dissolved gas than the pressure itself and we have undersatured tables to show. SPE9 only allows gas to dissolve into oil, and not the other way around. Generally, the black-oil model is a pseudo-compositional model where both gas in oil () and oil in gas () can be included. close all figure; plot(pressure, f.muW(pressure), 'LineWidth', 2); grid on title('Water viscosity') ylabel('\mu_w') xlabel('Pressure'); ylim([0, 1.5e-3]) figure; plot(pressure, f.muG(pressure), 'LineWidth', 2); grid on title('Gas viscosity') ylabel('\mu_g') xlabel('Pressure'); figure; plot(p_g'/barsa, f.muO(p_g, rs_g, saturated)', 'LineWidth', 2) grid on title('Oil viscosity') ylabel('\mu_o') xlabel('Pressure')
Simulate the scheduleWe run the schedule. We provide the initial state, the model (containing the black oil model in this case) and the schedule with well controls, and control time steps. The simulator may use other timesteps internally, but it will always return values at the specified control steps. model.verbose = false; [wellsols, states, reports] =... simulateScheduleAD(state0, model, schedule, 'LinearSolver', linsolve); Solving timestep 01/35: -> 1 Day Well INJE1: Control mode changed from rate to bhp. Well PROD26: Control mode changed from orat to bhp. Solving timestep 02/35: 1 Day -> 2 Days Well PROD21: Control mode changed from orat to bhp. Solving timestep 03/35: 2 Days -> 4 Days Well PROD23: Control mode changed from orat to bhp. Solving timestep 04/35: 4 Days -> 8 Days Solving timestep 05/35: 8 Days -> 16 Days Solving timestep 06/35: 16 Days -> 28 Days Solving timestep 07/35: 28 Days -> 40 Days Solving timestep 08/35: 40 Days -> 60 Days Well PROD9: Control mode changed from orat to bhp. Warning: Solver did not converge, cutting timestep Well PROD9: Control mode changed from orat to bhp. Solving timestep 09/35: 60 Days -> 80 Days Well PROD9: Control mode changed from bhp to orat. Well PROD9: Control mode changed from orat to bhp. Solving timestep 10/35: 80 Days -> 100 Days Well PROD16: Control mode changed from orat to bhp. Solving timestep 11/35: 100 Days -> 115 Days Solving timestep 12/35: 115 Days -> 140 Days Well PROD22: Control mode changed from orat to bhp. Solving timestep 13/35: 140 Days -> 170 Days Solving timestep 14/35: 170 Days -> 200 Days Well PROD12: Control mode changed from orat to bhp. Well PROD11: Control mode changed from orat to bhp. Well PROD6: Control mode changed from orat to bhp. Solving timestep 15/35: 200 Days -> 250 Days Well PROD2: Control mode changed from orat to bhp. Well PROD20: Control mode changed from orat to bhp. Well PROD3: Control mode changed from orat to bhp. Solving timestep 16/35: 250 Days -> 300 Days Solving timestep 17/35: 300 Days -> 320 Days Well INJE1: Control mode changed from rate to bhp. Solving timestep 18/35: 320 Days -> 340 Days Solving timestep 19/35: 340 Days -> 360 Days Solving timestep 20/35: 360 Days -> 1 Year Well INJE1: Control mode changed from rate to bhp. Well PROD26: Control mode changed from orat to bhp. Well PROD23: Control mode changed from orat to bhp. Well PROD11: Control mode changed from orat to bhp. Well PROD12: Control mode changed from orat to bhp. Well PROD16: Control mode changed from orat to bhp. Well PROD20: Control mode changed from orat to bhp. Well PROD21: Control mode changed from orat to bhp. Well PROD22: Control mode changed from orat to bhp. Well PROD9: Control mode changed from orat to bhp. Well PROD20: Control mode changed from bhp to orat. Solving timestep 21/35: 1 Year -> 1 Year, 10 Days Well PROD2: Control mode changed from orat to bhp. Well PROD20: Control mode changed from orat to bhp. Well PROD6: Control mode changed from orat to bhp. Solving timestep 22/35: 1 Year, 10 Days -> 1 Year, 20 Days Well PROD3: Control mode changed from orat to bhp. Solving timestep 23/35: 1 Year, 20 Days -> 1 Year, 35 Days Solving timestep 24/35: 1 Year, 35 Days -> 1 Year, 55 Days Solving timestep 25/35: 1 Year, 55 Days -> 1 Year, 85 Days Well PROD13: Control mode changed from orat to bhp. Well PROD17: Control mode changed from orat to bhp. Well PROD25: Control mode changed from orat to bhp. Well PROD5: Control mode changed from orat to bhp. Well PROD7: Control mode changed from orat to bhp. Solving timestep 26/35: 1 Year, 85 Days -> 1 Year, 115 Days Solving timestep 27/35: 1 Year, 115 Days -> 1 Year, 145 Days Well PROD15: Control mode changed from orat to bhp. Well PROD19: Control mode changed from orat to bhp. Solving timestep 28/35: 1 Year, 145 Days -> 1 Year, 175 Days Well PROD18: Control mode changed from orat to bhp. Solving timestep 29/35: 1 Year, 175 Days -> 1 Year, 235 Days Well PROD10: Control mode changed from orat to bhp. Well PROD4: Control mode changed from orat to bhp. Well PROD4: Control mode changed from bhp to orat. Solving timestep 30/35: 1 Year, 235 Days -> 1 Year, 295 Days Well PROD4: Control mode changed from orat to bhp. Well PROD8: Control mode changed from orat to bhp. Solving timestep 31/35: 1 Year, 295 Days -> 1 Year, 355 Days Solving timestep 32/35: 1 Year, 355 Days -> 2 Years, 35 Days Solving timestep 33/35: 2 Years, 35 Days -> 2 Years, 80 Days Solving timestep 34/35: 2 Years, 80 Days -> 2 Years, 125 Days Well PROD24: Control mode changed from orat to bhp. Solving timestep 35/35: 2 Years, 125 Days -> 2 Years, 170 Days *** Simulation complete. Solved 35 control steps in 301 Seconds *** Launch interactive plot tool for well curvesThe interactive viewer can be used to visualize the wells and is the best choice for interactive viewing. T = convertTo(cumsum(schedule.step.val), year); plotWellSols(wellsols, T, 'field', 'qWs') h = gcf; Load comparison data from commercial solverTo validate the simulator output, we load in a pre-run dataset from a industry standard commercial solver run using the same inputs. addir = mrstPath('ad-blackoil'); compare = fullfile(addir, 'examples', 'spe9', 'compare'); [smry, smspec] = readSummaryLocal(fullfile(compare, 'SPE9')); compd = 1:(size(smry.data, 2)); Tcomp = smry.get(':+:+:+:+', 'YEARS', compd); Reading info from roughly 38 ministeps... ************************************ Actual number of ministeps: 37 Set up plotting functionsWe will plot the timesteps with different colors to see the difference between the results clearly. if ishandle(h); close(h); end mrstplot = @(data) plot(T, data, '-b', 'linewidth', 2); compplot = @(data) plot(Tcomp, data, 'ro', 'linewidth', 2); Plot two different injectorsWe plot the bottom hole pressures for two somewhat arbitrarily chosen injectors to show the accuracy of the pressure. clf names = {'PROD13', 'PROD18'}; nn = numel(names); for i = 1:nn name = names{i}; comp = convertFrom(smry.get(name, 'WBHP', compd), psia)'; mrst = getWellOutput(wellsols, 'bhp', name); subplot(nn, 1, i) hold on mrstplot(mrst); compplot(comp); title(name) axis tight grid on xlabel('Time (years)') ylabel('Pressure (Pa)') end legend({'MRST', 'ECL'}) Plot the gas production rateWe plot the gas production rate (at surface conditions). clf for i = 1:nn name = names{i}; comp = convertFrom(smry.get(name, 'WGPR', compd), 1000*ft^3/day); mrst = abs(getWellOutput(wellsols, 'qGs', name)); subplot(nn, 1, i) hold on mrstplot(mrst); compplot(comp); title(name) axis tight grid on xlabel('Time (years)') ylabel('Gas rate (m^3/s)') end legend({'MRST', 'ECL'}) Changing controlsWe saw earlier that all wells are initially rate controlled, but in practice a large number of wells will switch controls during the simulation. To show how each well changes throughout the simulation, we will plot indicators per well as a colorized matrix. From this we can clearly see that: - The injector switched immediately to BHP controls and stays there throughout the simulation (Well #1) - The producers are mostly rate controlled in the beginning and mostly BHP controlled at the end as a result of the average field pressure dropping during the simulation as mass is removed from the reservoir. - The period with very low controls at 1 year is easy to see. isbhp = @(ws) arrayfun(@(x) strcmpi(x.type, 'bhp'), ws); ctrls = cellfun(isbhp, wellsols, 'UniformOutput', false); ctrls = vertcat(ctrls{:}); nw = numel(wellsols{1}); nstep = numel(wellsols); X = repmat(1:nw, nstep, 1); Y = repmat(T, 1, nw); clf surf(X, Y, double(ctrls)) view(90, 90) colormap jet ylabel('Time (years)') xlabel('Well #'); title('Dark red color indicate BHP controls') axis tight Plot pressure before and after scheduleWe plot the pressure after the very first timestep alongside the pressure after the final timestep. By scaling the color axis by the minimum of the final state and the maximum of the first state, we can clearly see how the pressure has dropped due to fluid extraction. h1 = gcf; H2 = figure; p_start = states{1}.pressure; p_end = states{end}.pressure; cscale = [min(p_end), max(p_start)]; figure(h1); clf; plotCellData(G, p_start) axis tight colorbar view(v) caxis(cscale); title('Pressure after first timestep') figure(H2); clf; plotCellData(G, p_end) axis tight colorbar view(v) caxis(cscale); title('Pressure after final timestep')
Plot free gasSince the pressure has dropped significantly and we know that gas is being produced from the initially nearly saturated reservoir, we will look at the free gas. Again we consider both the first and the last state and use the same coloring. sg0 = states{1}.s(:, 3); sg = states{end}.s(:, 3); cscale = [0, max(sg)]; figure(h1); clf; plotCellData(G, sg0) axis tight colorbar view(v) caxis(cscale); title('Free gas after first timestep') figure(H2); clf; plotCellData(G, sg) axis tight colorbar view(v) caxis(cscale); title('Free gas after final timestep')
Plot dissolved gasSince we did not inject any gas, the produced and free gas must come from the initially dissolved gas in oil (). We plot the values before and after the simulation, scaling the color by the initial values. Note that the values are interpreted as the fraction of gas present in the oil phase. As the fraction is calculated at standard conditions, the value is typically much larger than 1. We weight by oil saturations to obtain a reasonable picture of how the gas in oil has evolved. Plotting just the value is not meaningful if is small. gasinoil_0 = states{1}.rs.*states{1}.s(:, 2); gasinoil = states{end}.rs.*states{end}.s(:, 2); cscale = [0, max(gasinoil_0)]; figure(h1); clf; plotCellData(G, gasinoil_0) axis tight colorbar view(v) caxis(cscale); title('Gas in after first timestep') figure(H2); clf; plotCellData(G, gasinoil) axis tight colorbar view(v) caxis(cscale); title('Gas in oil after final timestep')
Plot phase distributions0 = states{1}.s(:, [2, 3, 1]); s = states{end}.s(:, [2, 3, 1]); figure(h1); clf; plotCellData(G, s0) axis tight view(v) title('Phase distribution after first timestep') figure(H2); clf; plotCellData(G, s) axis tight view(v) title('Phase distribution after final timstep')
|