10 lines
268 B
Matlab
10 lines
268 B
Matlab
function b = isothermalCompressibility(tp)
|
|
% ISOTHERMALCOMPRESSIBILITY - Isothermal Compressibility [1/Pa]
|
|
%
|
|
% b = isothermalCompressibility(a)
|
|
% Return the isothermal compressibility of ThermoPhase a
|
|
% in units of 1/Pa
|
|
%
|
|
|
|
b = thermo_get(tp.tp_id, 26);
|
|
|