Skip to content

Commit 83741c5

Browse files
committed
feat: add volume flow in liters per second to Sonic Nozzle Table component
1 parent 628e0b8 commit 83741c5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/components/SonicNozzleTable.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export const SonicNozzleTable: React.FC<SonicNozzleTableProps> = ({
6868
["Mass flow rate", massFlow * 1000 * 3600, "g/h"],
6969
["Mass flow rate", massFlow * 1000 * 60, "g/min"],
7070
["Volume flow at outlet", massFlow / rho_out, "m³/s"],
71+
["Volume flow at outlet", (massFlow / rho_out) * 1000, "L/s"],
7172
["Volume flow at outlet", (massFlow / rho_out) * 1000 * 3600, "L/h"],
7273
],
7374
},

0 commit comments

Comments
 (0)