Working with physical properties and units in Matlab
Working with units:
>> s = unit('120 k:m') % define distance
s = 120000 m
>> t = unit('1 h') % define time interval
t = 3600 s
>> v = s / t % compute velocity
v = 33.3333 m s-1
>> v.ConvertToDisp('k:m/h') % show v in kilometers per hour
v = 120 k:m/h
>> v.ConvertToDisp('mi/h') % show v in miles per hour
v = 74.5645 mi/h
Convert the gas constant R=8.314 J/mol K to british thermal units per pound-mole and Rankine:
>> unit('8.314 J/mol K').ConvertTo('btu/lb-mol R')
ans =
6.4339
Citar como
Alex (2024). Working with physical properties and units in Matlab (https://www.mathworks.com/matlabcentral/fileexchange/40633-working-with-physical-properties-and-units-in-matlab), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxEtiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 |