Skip to content
Snippets Groups Projects
Commit 5f42913c authored by Timon Habenicht's avatar Timon Habenicht
Browse files

adds information to SimulationLogFiles

parent f2ba32d2
No related branches found
No related tags found
No related merge requests found
#include "ShearWaveLogFileInformation.h"
std::shared_ptr<LogFileInformation> ShearWaveInformation::getNewInstance(double u0, double v0)
std::shared_ptr<LogFileInformation> ShearWaveInformation::getNewInstance(double u0, double v0, std::vector< bool> tests, std::vector< real> l)
{
return std::shared_ptr<LogFileInformation>(new ShearWaveInformation(u0,v0));
return std::shared_ptr<LogFileInformation>(new ShearWaveInformation(u0, v0, tests, l));
}
std::string ShearWaveInformation::getOutput()
{
makeCenterHead("ShearWave Information");
oss << "u0: " << u0 << std::endl;
oss << "v0: " << v0 << std::endl;
oss << std::endl;
for (int i = 0; i < tests.size(); i++) {
if (tests.at(i)) {
oss << "Lx:" << l.at(i) << std::endl;
oss << "u0: " << u0 / (l.at(i) / l0) << std::endl;
oss << "v0: " << v0 / (l.at(i) / l0) << std::endl;
oss << std::endl;
}
}
return oss.str();
}
ShearWaveInformation::ShearWaveInformation(double u0, double v0) : u0(u0), v0(v0)
ShearWaveInformation::ShearWaveInformation(double u0, double v0, std::vector< bool> tests, std::vector< real> l) : u0(u0), v0(v0), tests(tests), l(l)
{
l0 = 32;
}
\ No newline at end of file
......@@ -3,19 +3,25 @@
#include "Utilities/LogFileInformation/LogFileInformationImp.h"
#include "LBM\LB.h"
#include <memory>
#include <vector>
class ShearWaveInformation : public LogFileInformationImp
{
public:
static std::shared_ptr<LogFileInformation> getNewInstance(double u0, double v0);
static std::shared_ptr<LogFileInformation> getNewInstance(double u0, double v0, std::vector< bool> tests, std::vector< real> l);
std::string getOutput();
private:
ShearWaveInformation() {};
ShearWaveInformation(double u0, double v0);
ShearWaveInformation(double u0, double v0, std::vector< bool> tests, std::vector< real> l);
double u0;
double v0;
std::vector< bool> tests;
std::vector< real> l;
int l0;
};
#endif
\ No newline at end of file
#include "TaylorGreenLogFileInformation.h"
std::shared_ptr<LogFileInformation> TaylorGreenInformation::getNewInstance(double u0, double amplitude)
std::shared_ptr<LogFileInformation> TaylorGreenInformation::getNewInstance(double u0, double amplitude, std::vector< bool> tests, std::vector< real> l)
{
return std::shared_ptr<LogFileInformation>(new TaylorGreenInformation(u0, amplitude));
return std::shared_ptr<LogFileInformation>(new TaylorGreenInformation(u0, amplitude, tests, l));
}
std::string TaylorGreenInformation::getOutput()
{
makeCenterHead("TaylorGreenVortex Information");
oss << "u0: " << u0 << std::endl;
oss << "Amplitude: " << amplitude << std::endl;
oss << std::endl;
for (int i = 0; i < tests.size(); i++) {
if (tests.at(i)) {
oss << "Lx:" << l.at(i) << std::endl;
oss << "u0: " << u0 / (l.at(i) / l0) << std::endl;
oss << "Amplitude: " << amplitude / (l.at(i) / l0) << std::endl;
oss << std::endl;
}
}
return oss.str();
}
TaylorGreenInformation::TaylorGreenInformation(double u0, double amplitude) : u0(u0), amplitude(amplitude)
TaylorGreenInformation::TaylorGreenInformation(double u0, double amplitude, std::vector< bool> tests, std::vector< real> l) : u0(u0), amplitude(amplitude), tests(tests), l(l)
{
l0 = 32;
}
......@@ -3,19 +3,25 @@
#include "Utilities/LogFileInformation/LogFileInformationImp.h"
#include "LBM\LB.h"
#include <memory>
#include <vector>
class TaylorGreenInformation : public LogFileInformationImp
{
public:
static std::shared_ptr<LogFileInformation> getNewInstance(double u0, double amplitude);
static std::shared_ptr<LogFileInformation> getNewInstance(double u0, double amplitude, std::vector< bool> tests, std::vector< real> l);
std::string getOutput();
private:
TaylorGreenInformation() {};
TaylorGreenInformation(double u0, double amplitude);
TaylorGreenInformation(double u0, double amplitude, std::vector< bool> tests, std::vector< real> l);
double u0;
double amplitude;
std::vector< bool> tests;
std::vector< real> l;
int l0;
};
#endif
\ No newline at end of file
......@@ -174,9 +174,9 @@ void ConfigFileReader::makeLogFileInformation()
logInfo.push_back(BasicSimulationInfo::getNewInstance(numberOfTimeSteps, basisTimeStepLength, startStepCalculation, viscosity));
if (testShouldRun(tgv))
logInfo.push_back(TaylorGreenInformation::getNewInstance(u0TGV, amplitudeTGV));
logInfo.push_back(TaylorGreenInformation::getNewInstance(u0TGV, amplitudeTGV, tgv, l));
if (testShouldRun(sw))
logInfo.push_back(ShearWaveInformation::getNewInstance(u0SW, v0SW));
logInfo.push_back(ShearWaveInformation::getNewInstance(u0SW, v0SW, sw, l));
logInfo.push_back(SimulationTimeInformation::getNewInstance(simInfo, writeFiles));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment