Hi, we are using MATLAB 2023b and MRST2023b. We have downloaded the spe11 decks from https://github.com/sintefmath/spe11-decks and placed the SPE CSP dataset in the MRST folder. we are encountering the following errors.
Could you please advise?
>> fn = 'spe11-decks\csp11b\isothermal\130_62\CSP11B_DISGAS.DATA';
>>
>> problem = initEclipsePackedProblemAD(fn);
Error using readEclipseDeck
spe11-decks\csp11b\isothermal\130_62\CSP11B_DISGAS.DATA: No such file or directory
Error in initEclipseProblemAD (line 74)
deck = readEclipseDeck(deck);
Error in initEclipsePackedProblemAD (line 52)
[state0, model, schedule, nls] = initEclipseProblemAD(deck, extra{:});
thanks.
Cenk
Original Message:
Sent: 01-14-2024 09:32 AM
From: Olav Møyner
Subject: Input files for other simulators
Hi,
We have a few examples uploaded here that run in MRST: https://github.com/sintefmath/spe11-decks
Note that these are primarily for testing purposes and have a number of effects disabled at the moment (thermal, diffusion and dispersion). You can also look at the PyOPMSPE11 package for generation of input files specific to the OPM Flow simulator: https://github.com/OPM/pyopmspe11
You can simulate then like so:
fn = 'spe11-decks\csp11b\isothermal\130_62\CSP11B_DISGAS.DATA';
problem = initEclipsePackedProblemAD(fn);
problem.SimulatorSetup.NonLinearSolver.maxTimestepCuts = 100
simulatePackedProblem(problem, 'restartStep', 1);
[ws, states, reports] = getPackedSimulatorOutput(problem);
figure;
plotToolbar(problem.SimulatorSetup.model.G, states);
view(0, 0)