Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed Nov 8, 2023
1 parent f96c67f commit 2f4d053
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,10 @@ public void run(UUID id) {
*
*
* <p>
* calcIdealAirGasRatio
* </p>
* Calculates ideal air fuel ratio [kg air/kg fuel]
* </p>
*
* @return ideal air fuel ratio [kg air/kg fuel]
*/
public double calcIdealAirFuelRatio() {
thermoSystem = inStream.getThermoSystem().clone();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void setTemperature(double temperature, String unitT) {
*
* @param flowRate flow rate
* @param flowUnit Supported units are Sm3/sec, Sm3/hr, Sm3/day, MSm3/day
* @return gas flow rate in unit sm3/sec
*
*/
public void setGasFlowRate(double flowRate, String flowUnit) {
double conversionFactor = 1.0;
Expand Down Expand Up @@ -194,7 +194,7 @@ public double getGasFlowRate(String flowUnit) {
*
* @param flowRate flow rate
* @param flowUnit Supported units are m3/sec, m3/hr, m3/day
* @return oil flow rate in unit m3/sec
*
*/
public void setOilFlowRate(double flowRate, String flowUnit) {
double conversionFactor = 1.0;
Expand Down Expand Up @@ -247,7 +247,7 @@ public double getOilFlowRate(String flowUnit) {
*
* @param flowRate flow rate
* @param flowUnit Supported units are m3/sec, m3/hr, m3/day
* @return water flow rate in unit m3/sec
*
*/
public void setWaterFlowRate(double flowRate, String flowUnit) {
double conversionFactor = 1.0;
Expand Down

0 comments on commit 2f4d053

Please sign in to comment.