garment-smv-calculator
v1.0.2
Published
SMV (Standard Minute Value) calculator for garment industry sewing operations. Formula: SMV = Basic Time × (1 + Allowance%). Built and used in production by Scan ERP.
Maintainers
Readme
garment-smv-calculator
SMV (Standard Minute Value) calculator for the garment industry. Formula: SMV = Basic Time × (1 + Allowance%). Built and used in production by Scan ERP.
Install
npm install garment-smv-calculatorUsage
const { calculateSMV } = require('garment-smv-calculator');
// Calculate SMV for a sewing operation
const smv = calculateSMV({
observedTimeSeconds: 18, // From stopwatch observation
performanceRating: 1.05, // Westinghouse rating (skilled at 105%)
allowancePercent: 0.30, // 30% (personal + fatigue + delay)
});
console.log(`SMV: ${smv.toFixed(2)} minutes per piece`);
// → SMV: 0.41 minutes per pieceAPI
calculateSMV({ observedTimeSeconds, performanceRating, allowancePercent })
Returns SMV in minutes per piece.
calculateHourlyCapacity({ smvMinutes, efficiencyPercent })
Returns expected hourly piece output based on SMV and operator efficiency.
calculateSMVFromTarget({ targetPiecesPerHour, efficiencyPercent })
Reverse calculation — given a target hourly output, what SMV is required?
performanceRatingFromWestinghouse({ skill, effort, conditions, consistency })
Calculate performance rating using the Westinghouse 4-factor system.
Background
SMV is the foundation metric for piece-rate wage calculation in CMT garment factories. Without accurate SMV, every downstream calculation (operator wages, line capacity, CMT pricing) produces wrong numbers.
Read the complete guide: SAM & SMV Formula in Garment Industry
Related Reading
- How to Calculate SMV: Stopwatch Method
- SMV Calculation Software Comparison
- SAM Values Reference Table
- SMV Costing for CMT Pricing
Used By
- Scan ERP — QR-based ERP for CMT garment factories
- scan-erp-packages — Open-source CMT factory utilities
License
MIT — Built by Santosh Rijal
