Initial Commit

This commit is contained in:
2023-11-25 14:37:27 -08:00
parent 0db09007e8
commit e559c2d730
23 changed files with 329 additions and 0 deletions

0
include/DataLoad.h Normal file
View File

0
include/DataSave.h Normal file
View File

12
include/Deserializer.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef DESERIALIZER_H
#define DESERIALIZER_H
#include <string>
#include <fstream>
class Deserializer {
public:
static bool deserializeData(const std::string& filename, std::string& data);
};
#endif

7
include/Kfactor.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef KFACTOR_H
#define KFACTOR_H
// Function declaration for calculating the K-factor
double calculateKFactor(double neutralAxisLocation, double materialThickness);
#endif

12
include/Serializer.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef SERIALIZER_H
#define SERIALIZER_H
#include <string>
#include <fstream>
class Serializer {
public:
static bool serializeData(const std::string& filename, const std::string& data);
};
#endif

0
include/Setback.h Normal file
View File

7
include/Tonnage.h Normal file
View File

@@ -0,0 +1,7 @@
#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