From ab1bf5f710f090adaac8506406f903f1f51b6db2 Mon Sep 17 00:00:00 2001 From: Alf Birger Rustad Date: Thu, 3 Oct 2019 15:31:17 +0200 Subject: [PATCH] Make PRT header self-explanatory --- opm/simulators/flow/FlowMainEbos.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/opm/simulators/flow/FlowMainEbos.hpp b/opm/simulators/flow/FlowMainEbos.hpp index 9bb9017ad..93558d5a8 100644 --- a/opm/simulators/flow/FlowMainEbos.hpp +++ b/opm/simulators/flow/FlowMainEbos.hpp @@ -295,15 +295,15 @@ namespace Opm ss << " # ####### ###### # # \n\n"; ss << "Flow is a simulator for fully implicit three-phase black-oil flow,"; ss << " and is part of OPM.\nFor more information visit: https://opm-project.org \n\n"; - ss << "Flow Version = " + version + "\n"; + ss << "Flow Version = " + version + "\n"; if (uname(&arch) == 0) { - ss << "System = " << arch.nodename << " (Number of logical cores: " << num_cpu; - ss << ", RAM: " << std::fixed << std::setprecision (2) << mem_size << " MB) \n"; - ss << "Architecture = " << arch.sysname << " " << arch.machine << " (Release: " << arch.release; - ss << ", Version: " << arch.version << " )\n"; + ss << "Machine name = " << arch.nodename << " (Number of logical cores: " << num_cpu; + ss << ", Memory size: " << std::fixed << std::setprecision (2) << mem_size << " MB) \n"; + ss << "Operating system = " << arch.sysname << " " << arch.machine << " (Kernel: " << arch.release; + ss << ", " << arch.version << " )\n"; } if (user) { - ss << "User = " << user << std::endl; + ss << "User = " << user << std::endl; } ss << "Simulation started on " << tmstr << " hrs\n";