UNPKG

@neutrium/thermo

Version:

The base module of the NeutriumJS thermodynamics package.

9 lines (8 loc) 280 B
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; }