Skip to content

Commit

Permalink
added set pressure with unit (#1062)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol authored Aug 1, 2024
1 parent eef5907 commit ae61f63
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,19 @@ public void setPressure(double pressure, String unit) {
pressureUnit = unit;
}

/**
* <p>
* Setter for the field <code>pressure</code>.
* </p>
*
* @param pressure a double
* @param unit a {@link java.lang.String} object
*/
public void setOutletPressure(double pressure, String unit) {
setOutletPressure(pressure);
pressureUnit = unit;
}

/**
* <p>
* Setter for the field <code>speed</code>.
Expand Down

0 comments on commit ae61f63

Please sign in to comment.