Added kinetic damping markers to the plots

This commit is contained in:
iasonmanolas 2021-07-16 14:16:53 +03:00
parent 28db0fa63e
commit 613bb85a4d
1 changed files with 10 additions and 5 deletions

View File

@ -152,7 +152,8 @@ struct SimulationResultsReporter {
history.kineticEnergy,
std::filesystem::path(graphsFolder)
.append("KineticEnergyLog_" + graphSuffix + ".png")
.string());
.string(),
history.redMarks);
}
if (!history.logResidualForces.empty()) {
@ -161,7 +162,8 @@ struct SimulationResultsReporter {
history.logResidualForces,
std::filesystem::path(graphsFolder)
.append("ResidualForcesLog_" + graphSuffix + ".png")
.string());
.string(),
history.redMarks);
}
if (!history.potentialEnergies.empty()) {
@ -170,7 +172,8 @@ struct SimulationResultsReporter {
history.potentialEnergies,
std::filesystem::path(graphsFolder)
.append("PotentialEnergy_" + graphSuffix + ".png")
.string());
.string(),
history.redMarks);
}
if (!history.residualForcesMovingAverage.empty()) {
createPlot("Number of Iterations",
@ -178,7 +181,8 @@ struct SimulationResultsReporter {
history.residualForcesMovingAverage,
std::filesystem::path(graphsFolder)
.append("ResidualForcesMovingAverage_" + graphSuffix + ".png")
.string());
.string(),
history.redMarks);
}
// if (!history.residualForcesMovingAverageDerivativesLog.empty()) {
// createPlot("Number of Iterations",
@ -194,7 +198,8 @@ struct SimulationResultsReporter {
history.sumOfNormalizedDisplacementNorms,
std::filesystem::path(graphsFolder)
.append("SumOfNormalizedDisplacementNorms_" + graphSuffix + ".png")
.string());
.string(),
history.redMarks);
}
}
};