Issue #2289 Fix TempOfTe at small pressure values.
Former-commit-id:102d560686
[formerly a114bf15018ab86ec1511c13704fd6e1e3feed99] Former-commit-id:2754326906
This commit is contained in:
parent
720993104c
commit
d051416c76
1 changed files with 12 additions and 9 deletions
|
@ -33,13 +33,16 @@ import java.util.Arrays;
|
|||
* SOFTWARE HISTORY
|
||||
*
|
||||
* Date Ticket# Engineer Description
|
||||
* ------------ ---------- ----------- --------------------------
|
||||
* ------------- -------- ----------- --------------------------
|
||||
* Jun 03, 2013 2043 bsteffen Ported from meteolib C
|
||||
* Aug 13, 2013 2262 njensen Moved from deriv params
|
||||
* Aug 21, 2013 2289 bsteffen Add more pressure levels to TeTable.
|
||||
* Remove redundant adiabatic_te calls.
|
||||
* Use binary search in Arrays class.
|
||||
* Return table values when possible.
|
||||
* May 12, 2014 2289 bsteffen Change pmin to 200 because adiabetic_te
|
||||
* is not reliable for all temperatures
|
||||
* for smaller pressures.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -55,7 +58,7 @@ public class TempOfTe {
|
|||
|
||||
private static final int nt = 1 + tmax - tmin;
|
||||
|
||||
private static final int pmin = 100;
|
||||
private static final int pmin = 200;
|
||||
|
||||
private static final int pmax = 1000;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue