If you plot this equation you get a few points. I think you plotting the curve $y = x^3 (1+c/x) -dx$ where $x,y$ are variables, and $c,d$ some constants.
c = 0.00822/101325
d = ...
x = linspace(-5,5,100); %left bound, right bound, number of points in between
y= x.^3 .* (1 + c./x) - d.*x; % .-operators for element wise operations
plot(x,y)
If you plot this equation you get a few points. I think you plotting the curve $y = x^3 (1+c/x) -dx$ where $x,y$ are variables, and $c,d$ some constants.