From 8c67dddf90ae9ad6b6cf9a840923d83426a87e7d Mon Sep 17 00:00:00 2001 From: Kai Bao Date: Wed, 15 Apr 2015 16:38:56 +0200 Subject: [PATCH] Adding the startup message for flow-polymer. Three letters wider than flow. --- examples/flow_polymer.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/examples/flow_polymer.cpp b/examples/flow_polymer.cpp index 7973fe934..08ac54208 100644 --- a/examples/flow_polymer.cpp +++ b/examples/flow_polymer.cpp @@ -91,9 +91,18 @@ try { using namespace Opm; - std::cout << "\n================ Test program for fully implicit three-phase black-oil-polymer flow ===============\n\n"; - parameter::ParameterGroup param(argc, argv, false); + std::cout << "*********************************************************************************************\n"; + std::cout << "* *\n"; + std::cout << "* This is Flow-Polymer (version 2015.04) *\n"; + std::cout << "* *\n"; + std::cout << "* Flow-Polymer is a simulator for three-phase black-oil-polymer flow that is a part of OPM. *\n"; + std::cout << "* For more information see: *\n"; + std::cout << "* http://opm-project.org *\n"; + std::cout << "* *\n"; + std::cout << "*********************************************************************************************\n\n"; + std::cout << "--------------- Reading parameters ---------------" << std::endl; + parameter::ParameterGroup param(argc, argv, false); // If we have a "deck_filename", grid and props will be read from that. bool use_deck = param.has("deck_filename");