mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
18 lines
291 B
Matlab
18 lines
291 B
Matlab
|
|
SOIL = riGetActiveCellProperty("SOIL");
|
|
|
|
SOILDIFF = SOIL;
|
|
|
|
# Calculate change of oil saturation from timestep to timestep
|
|
i = 0;
|
|
for timestep = SOIL
|
|
if (i > 0)
|
|
SOILDIFF(:,i) = timestep - SOIL(:,i);
|
|
endif
|
|
i++;
|
|
endfor
|
|
SOILDIFF(:,i) = 0;
|
|
|
|
riSetActiveCellProperty(SOILDIFF, "SOILDIFF");
|
|
|