UNPKG

@ppramanik62/lab-works

Version:

A comprehensive command-line toolkit for hydraulic turbine calculations, supporting Francis Turbine and Pelton Wheel computations with interactive mode and validation.

18 lines 523 B
/** * Pelton Wheel Calculator - Main orchestrator */ import { PeltonResults } from './formulas'; import { PeltonOptions } from './io'; /** * Print results in human-readable format */ export declare const printResults: (results: PeltonResults) => void; /** * Print results in JSON format */ export declare const printResultsJson: (results: PeltonResults) => void; /** * Run the Pelton Wheel calculator */ export declare const runPelton: (options?: PeltonOptions) => Promise<void>; //# sourceMappingURL=index.d.ts.map