Skip to content

Commit

Permalink
Temporar fix for the broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkapok committed Aug 4, 2024
1 parent 6fedb27 commit b759a90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions projects/scuba-physics/src/lib/Diver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import { Tank } from './Tanks';
export class Diver {
// liters/min
public static readonly defaultSac = 20;
/** liter/min, usually 1.5x rmv */
// TODO fix meaning of the value for one diver only
/** liter/min, usually 1.5x rmv for 2 divers (e.g. 3x) */
public stressRmv: number;

/**
* @param rmv liter/min
*/
constructor(public rmv: number = Diver.defaultSac) {
this.stressRmv = rmv * 1.5;
this.stressRmv = rmv * 3;
}

/**
Expand Down

0 comments on commit b759a90

Please sign in to comment.