/* * command_print_grid.cpp * * Created on: 16.03.2011 * Author: Julian Iseringhausen */ /** * @file com_print_grid.cpp * @author Julian Iseringhausen * @date Mon Apr 18 12:43:54 2011 * * @brief Writes a given grid including boundary and * halo to a VTKStructuredPoints file in * output/date_time * */ #ifdef HAVE_CONFIG_H #include #endif #include #include "base/command.hpp" #include "comm/comm.hpp" #include "grid/grid.hpp" #include "grid/multigrid.hpp" using namespace VMG; class VMGCommandPrintGrid : public Command { public: Request Run(Command::argument_vector arguments) { std::ostringstream buffer; Multigrid& grid = *MG::GetFactory().GetObject(arguments[0])->Cast(); buffer << "Level " << grid.Level() << " "; switch (grid().Global().BoundaryType()) { case LocallyRefined: buffer << "Locally Refined "; break; case GlobalMax: buffer << "Global Max "; break; case GlobalCoarsened: buffer << "Global Coarsened "; break; case EmptyGrid: buffer << "Empty grid "; break; } buffer << arguments[0]; MG::GetComm()->PrintGrid(grid(), buffer.str().c_str()); return Continue; } static const char* Name() {return "PrintGrid";} static int Arguments() {return 1;} }; CREATE_INITIALIZER(VMGCommandPrintGrid);