Skip to main content
12-Amethyst
June 15, 2021
Solved

Dealing with Gauge and Absolute Pressures

  • June 15, 2021
  • 1 reply
  • 2548 views

Have any of you guys got a good solution for being able to distinguish psig and psia in a worksheet? I would like to be able to define the local atmosphere in the sheet and then work with either the gauge or absolute pressures in the sheet. Seems like this should be simple but an elegant solution is eluding me.  Thanks!

Best answer by LucMeekes

If both psia and psig are effectively 'Pounds per square inch' then Mathcad cannot tell the difference between them.

That should not hold you from defining each as that unit, so:

psia:=psi

psig:=psi

and using them, but you'll have to keep track of which is which yourself, as Mathcad will set the unit of any computed results using variables with those units to Pa (The SI unit for pressure), or psi (if you've chosen US units).

 

Success!
Luc

1 reply

LucMeekes23-Emerald IVAnswer
23-Emerald IV
June 15, 2021

If both psia and psig are effectively 'Pounds per square inch' then Mathcad cannot tell the difference between them.

That should not hold you from defining each as that unit, so:

psia:=psi

psig:=psi

and using them, but you'll have to keep track of which is which yourself, as Mathcad will set the unit of any computed results using variables with those units to Pa (The SI unit for pressure), or psi (if you've chosen US units).

 

Success!
Luc

Eric_S12-AmethystAuthor
12-Amethyst
June 16, 2021

Thank you, @LucMeekes ! This helps.