UNPKG

@neutrium/thermo

Version:

The base module of the NeutriumJS thermodynamics package.

9 lines (8 loc) 256 B
import { State } from "./State"; export declare abstract class EquationOfState { protected modes: string[][]; name: string; constructor(); abstract solve(inputs: any, fluid?: any): State; protected findModeIndex(inputs: any): number; }