Answer:
Check below for answers
Explanation:
Matlab code:
function[Pa] = Psi-ToPa(psi)
Pa = psi * 6894.75728;
end
a) To convert 120 psi to units of Pa, just call the function Pa using the command:
Psi-ToPa(120)
ans =
8.2737e+05
b) To convert 3000 psi to units of Pa, just call the function Pa using the command:
Psi-ToPa(3000)
ans =
2.0684e+07