import type { RadialChipThinningInput, RadialChipThinningResult } from './types.js'; /** * Calculate adjusted feed per tooth to compensate for radial chip thinning. * * When ae < D/2, the actual chip thickness is less than the programmed fz. * This function computes the adjusted (higher) fz needed to maintain the target chip load. * * @formula * chipThinningFactor = D / (2 × √(ae × (D − ae))) * adjustedFz = fz_target × chipThinningFactor * * @reference Harvey Tool — Radial Chip Thinning guide. * * @param input - Chip thinning parameters * @returns RadialChipThinningResult with adjusted feed and thinning factor */ export declare function radialChipThinning(input: RadialChipThinningInput): RadialChipThinningResult; //# sourceMappingURL=radialChipThinning.d.ts.map