Skip to content
Snippets Groups Projects
Commit 6dc98a03 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Pass output stream to Process::post().

parent 38ade990
No related branches found
No related tags found
No related merge requests found
...@@ -83,13 +83,19 @@ int main(int argc, char *argv[]) ...@@ -83,13 +83,19 @@ int main(int argc, char *argv[])
(*p_it)->initialize(); (*p_it)->initialize();
} }
std::string const output_file_name(project.getOutputFilePrefix() + "_result.dat");
DBUG("Create output file %s", output_file_name.c_str());
std::ofstream output_file(output_file_name);
INFO("Solve processes."); INFO("Solve processes.");
for (auto p_it = project.processesBegin(); p_it != project.processesEnd(); ++p_it) for (auto p_it = project.processesBegin(); p_it != project.processesEnd(); ++p_it)
{ {
(*p_it)->solve(); (*p_it)->solve();
(*p_it)->post(); (*p_it)->post(output_file);
} }
output_file.close();
delete fmt; delete fmt;
delete logog_cout; delete logog_cout;
LOGOG_SHUTDOWN(); LOGOG_SHUTDOWN();
......
...@@ -133,7 +133,7 @@ public: ...@@ -133,7 +133,7 @@ public:
_linearSolver->solve(*_rhs, *_x); _linearSolver->solve(*_rhs, *_x);
} }
void post() void post(std::ostream& os)
{ {
DBUG("Postprocessing GroundwaterFlowProcess."); DBUG("Postprocessing GroundwaterFlowProcess.");
// Postprocessing of the linear system of equations solver results: // Postprocessing of the linear system of equations solver results:
......
...@@ -28,7 +28,10 @@ public: ...@@ -28,7 +28,10 @@ public:
virtual void initialize() = 0; virtual void initialize() = 0;
virtual void solve() = 0; virtual void solve() = 0;
virtual void post() = 0;
/// Postprocessing after solve().
/// The output stream is dedicated for the ascii result output.
virtual void post(std::ostream& os) = 0;
protected: protected:
MeshLib::Mesh const& _mesh; MeshLib::Mesh const& _mesh;
......
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