UNPKG
@neutrium/thermo
Version:
latest (2.2.1)
2.2.1
2.2.0
2.1.0
2.0.1
2.0.0
The base module of the NeutriumJS thermodynamics package.
github.com/neutrium/thermo
neutrium/thermo
@neutrium/thermo
/
dist
/
EquationOfState.d.ts
9 lines
(8 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
State
}
from
"./State"
;
export
declare
abstract
class
EquationOfState
<T =
number
> {
protected
modes
:
string
[][];
abstract
name
:
string
;
constructor
(
);
abstract
solve
(
inputs
:
any
,
fluid
?:
any
):
State
<T>;
protected
findModeIndex
(
inputs
:
any
):
number
; }