Skip to content

Commit

Permalink
Fix incorrect exponent in EINOx function
Browse files Browse the repository at this point in the history
  • Loading branch information
askprash committed Apr 10, 2024
1 parent 321e68d commit b940cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mission/LTO.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function EINOx4(P3_kPa, T3_K, sp_humidity = 0.00634)

H = -19.0*(sp_humidity - 0.00634)

EI_NOx = exp(H)*P3_kPa^0.4 * (a*T3_K^4 + b*T3_K^4 + c*T3_K^2 + d*T3_K + e)
EI_NOx = exp(H)*P3_kPa^0.4 * (a*T3_K^4 + b*T3_K^3 + c*T3_K^2 + d*T3_K + e)
return EI_NOx
end # function EINOx4

Expand Down

0 comments on commit b940cdb

Please sign in to comment.