8 lines
288 B
C
8 lines
288 B
C
#ifndef TONNAGE_H
|
|
#define TONNAGE_H
|
|
|
|
// Function declaration for calculating the press brake tonnage
|
|
double calculateTonnage(double materialThickness, double bendLength, double dieOpeningWidth, double materialFactor, double methodFactor, double multipleBendToolingFactor);
|
|
|
|
#endif
|