Files
IFEM/Apps/Common/SIMSemi3D.C
Arne Morten Kvarving 3b07efffc2 reorganize NavierStokes application layout
- move Stokes application to Apps/Stokes
- move FSI application to Apps/FSI
- rename old Stokes directory NavierStokes
2016-01-31 14:19:08 +01:00

20 lines
530 B
C

// $Id$
//==============================================================================
//!
//! \file SIMSemi3D.C
//!
//! \date Jun 5 2014
//!
//! \author Arne Morten Kvarving / SINTEF
//!
//! \brief Solution driver for plane-decoupled solvers.
//!
//==============================================================================
#include <memory>
#include <vector>
#include "DataExporter.h"
std::vector<DataExporter*> plane_exporters; //!< Data exporters for planes
std::vector<std::shared_ptr<std::ostream>> plane_log_files;