ResInsight/OctavePlugin/OctaveScripts/SoilTimeDiff.m
2012-05-18 09:45:23 +02:00

18 lines
357 B
Matlab

addpath("/home/builder/Projects/ResInsightBuildDir/OctavePlugin");
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");