8 lines
130 B
Matlab
8 lines
130 B
Matlab
function p = oneatm
|
|
% ONEATM Get one atmosphere in Pa.
|
|
% p = oneatm
|
|
% :return:
|
|
% One atmosphere in Pascals.
|
|
%
|
|
|
|
p = 101325.0;
|