Skip to content

Commit

Permalink
Move equation for a_mps right behind v_m3pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
tobolar committed Feb 8, 2024
1 parent 79dff94 commit cc5354f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ThermofluidStream/Sensors/Internal/getUnit.mo
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ algorithm
unit :="kg/m3";
elseif quantity == Types.Quantities.v_m3pkg then
unit :="m3/kg";
elseif quantity == Types.Quantities.a_mps then
unit := "(m/s)";
elseif quantity == Types.Quantities.cv_JpkgK then
unit :="J/(kg.K)";
elseif quantity == Types.Quantities.cp_JpkgK then
Expand All @@ -38,8 +40,6 @@ algorithm
unit :="1";
elseif quantity == Types.Quantities.MM_kgpmol then
unit := "(kg/mol)";
elseif quantity == Types.Quantities.a_mps then
unit := "(m/s)";
else
unit :="";
end if;
Expand Down

0 comments on commit cc5354f

Please sign in to comment.