Dear Mrst developers,
I tried to refine eclipse grid due to large size of model.
I tried to use the code as below:
%% Read and mrstModule add coarsegrid
mrstModule add ad-core;
mrstModule add ad-props;
mrstModule add ad-blackoil;
% The SAIGUP model is one of the standard data sets provided with MRST. We
% therefore check if it is present, and if not, download and install it.
grdecl = readGRDECL(fullfile(ROOTDIR, 'examples', 'data', ...
'KANAJO', 'NAKAJO.GRDECL'));
grdecl = convertInputUnits(grdecl, getUnitSystem('METRIC'));
grdecl = refineGrdecl(['2023_Nakajo.grdecl',10 ]);
G = processGRDECL(grdecl);
However, the error show like this:
Dot indexing is not supported for variables of this type.
Error in grdeclXYZ (line 50)
xyz = reshape(grdecl.COORD, [6, grdecl.cartDims(1:2) + 1]);
Error in refineGrdecl (line 59)
[xyz, zcorn] = grdeclXYZ(grdecl_in);
Error in Copy_of_nakojocoarsegridExample (line 16)
grdecl = refineGrdecl(['2023_Nakajo.grdecl',10 ]);
Could you give me some advices for this issue?
Thank you so much!
Best regards
Vo Thanh Hung