17 lines
450 B
Matlab
17 lines
450 B
Matlab
function v = electricalConductivity(a)
|
|
% ELECTRICALCONDUCTIVITY Get the electrical conductivity.
|
|
% v = electricalConductivity(a)
|
|
% :param a:
|
|
% Instance of class :mat:func:`Transport` (or another
|
|
% object derived from Transport)
|
|
% for which the electrical conductivity is desired.
|
|
% :return:
|
|
% Electrical conductivity in S/m
|
|
%
|
|
|
|
v = trans_get(a.id, 3);
|
|
if v == -1.0
|
|
error(geterr);
|
|
elseif v < 0.0
|
|
error('exception raised');
|
|
end
|