This is a formula I found online that converts temperature to R22 pressures.
x = ((temp - 32) / 1.8 + 273.15);
y = (75.30265 + (- 4155.54) / x + 0.018343 * x + (- 11.3186) * log(x));
pressure= exp
-1.01325;
In this formula I get the pressure from knowing the temp.
What i'm trying to do is reverse the formula where I know the pressure & want to get the temp.
Are there any math wizards out there that can do it because I sure can't ?
x = ((temp - 32) / 1.8 + 273.15);
y = (75.30265 + (- 4155.54) / x + 0.018343 * x + (- 11.3186) * log(x));
pressure= exp
In this formula I get the pressure from knowing the temp.
What i'm trying to do is reverse the formula where I know the pressure & want to get the temp.
Are there any math wizards out there that can do it because I sure can't ?