libMesh
Functions
reduced_basis_ex1.C File Reference

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 77 of file reduced_basis_ex1.C.

78 {
79  // Initialize libMesh.
80  LibMeshInit init (argc, argv);
81 
82  // This example requires a linear solver package.
83  libmesh_example_requires(libMesh::default_solver_package() != INVALID_SOLVER_PACKAGE,
84  "--enable-petsc, --enable-trilinos, or --enable-eigen");
85 
86 #if !defined(LIBMESH_HAVE_XDR)
87  // We need XDR support to write out reduced bases
88  libmesh_example_requires(false, "--enable-xdr");
89 #elif defined(LIBMESH_DEFAULT_SINGLE_PRECISION)
90  // XDR binary support requires double precision
91  libmesh_example_requires(false, "--disable-singleprecision");
92 #endif
93  // FIXME: This example currently segfaults with Trilinos? It works
94  // with PETSc and Eigen sparse linear solvers though.
95  libmesh_example_requires(libMesh::default_solver_package() != TRILINOS_SOLVERS, "--enable-petsc");
96 
97  // Skip this 2D example if libMesh was compiled as 1D-only.
98  libmesh_example_requires(2 <= LIBMESH_DIM, "2D support");
99 
100 #ifndef LIBMESH_ENABLE_DIRICHLET
101  libmesh_example_requires(false, "--enable-dirichlet");
102 #else
103 
104  // Parse the input file (reduced_basis_ex1.in) using GetPot
105  std::string parameters_filename = "reduced_basis_ex1.in";
106  GetPot infile(parameters_filename);
107 
108  unsigned int n_elem = infile("n_elem", 1); // Determines the number of elements in the "truth" mesh
109  const unsigned int dim = 2; // The number of spatial dimensions
110 
111  bool store_basis_functions = infile("store_basis_functions", true); // Do we write the RB basis functions to disk?
112 
113  // Read the "online_mode" flag from the command line
114  GetPot command_line (argc, argv);
115  int online_mode = 0;
116  if (command_line.search(1, "-online_mode"))
117  online_mode = command_line.next(online_mode);
118 
119  // Build a mesh on the default MPI communicator.
120  Mesh mesh (init.comm(), dim);
122  n_elem, n_elem,
123  0., 1.,
124  0., 1.,
125  QUAD4);
126 
127  // Create an equation systems object.
128  EquationSystems equation_systems (mesh);
129 
130  // We override RBConstruction with SimpleRBConstruction in order to
131  // specialize a few functions for this particular problem.
132  SimpleRBConstruction & rb_con =
133  equation_systems.add_system<SimpleRBConstruction> ("RBConvectionDiffusion");
134 
135  // Initialize the data structures for the equation system.
136  equation_systems.init ();
137 
138  // Print out some information about the "truth" discretization
139  equation_systems.print_info();
140  mesh.print_info();
141 
142  // Build a new RBEvaluation object which will be used to perform
143  // Reduced Basis calculations. This is required in both the
144  // "Offline" and "Online" stages.
145  SimpleRBEvaluation rb_eval(mesh.comm());
146 
147  // We need to give the RBConstruction object a pointer to
148  // our RBEvaluation object
149  rb_con.set_rb_evaluation(rb_eval);
150 
151  if (!online_mode) // Perform the Offline stage of the RB method
152  {
153  // Read in the data that defines this problem from the specified text file
154  rb_con.process_parameters_file(parameters_filename);
155 
156  // Print out info that describes the current setup of rb_con
157  rb_con.print_info();
158 
159  // Prepare rb_con for the Construction stage of the RB method.
160  // This sets up the necessary data structures and performs
161  // initial assembly of the "truth" affine expansion of the PDE.
163 
164  // Compute the reduced basis space by computing "snapshots", i.e.
165  // "truth" solves, at well-chosen parameter values and employing
166  // these snapshots as basis functions.
167  rb_con.train_reduced_basis();
168 
169  // Write out the data that will subsequently be required for the Evaluation stage
170 #if defined(LIBMESH_HAVE_CAPNPROTO)
172  rb_eval_writer.write_to_file("rb_eval.bin");
173 #else
175 #endif
176 
177  // If requested, write out the RB basis functions for visualization purposes
178  if (store_basis_functions)
179  {
180  // Write out the basis functions
182  }
183 
184  // Basis functions should be orthonormal, so
185  // print out the inner products to check this
187  }
188  else // Perform the Online stage of the RB method
189  {
190  // Read in the reduced basis data
191 #if defined(LIBMESH_HAVE_CAPNPROTO)
193  rb_eval_reader.read_from_file("rb_eval.bin", /*read_error_bound_data*/ true);
194 #else
195  rb_eval.legacy_read_offline_data_from_files();
196 #endif
197 
198  // Read in online_N and initialize online parameters
199  unsigned int online_N = infile("online_N", 1);
200  Real online_x_vel = infile("online_x_vel", 0.);
201  Real online_y_vel = infile("online_y_vel", 0.);
202  RBParameters online_mu;
203  online_mu.set_value("x_vel", online_x_vel);
204  online_mu.set_value("y_vel", online_y_vel);
205  rb_eval.set_parameters(online_mu);
206  rb_eval.print_parameters();
207 
208  // Now do the Online solve using the precomputed reduced basis
209  rb_eval.rb_solve(online_N);
210 
211  // Print out outputs as well as the corresponding output error bounds.
212  libMesh::out << "output 1, value = " << rb_eval.RB_outputs[0]
213  << ", bound = " << rb_eval.RB_output_error_bounds[0]
214  << std::endl;
215  libMesh::out << "output 2, value = " << rb_eval.RB_outputs[1]
216  << ", bound = " << rb_eval.RB_output_error_bounds[1]
217  << std::endl;
218  libMesh::out << "output 3, value = " << rb_eval.RB_outputs[2]
219  << ", bound = " << rb_eval.RB_output_error_bounds[2]
220  << std::endl;
221  libMesh::out << "output 4, value = " << rb_eval.RB_outputs[3]
222  << ", bound = " << rb_eval.RB_output_error_bounds[3]
223  << std::endl << std::endl;
224 
225  if (store_basis_functions)
226  {
227  // Read in the basis functions
228  rb_eval.read_in_basis_functions(rb_con);
229 
230  // Plot the solution
231  rb_con.load_rb_solution();
232 #ifdef LIBMESH_HAVE_EXODUS_API
233  ExodusII_IO(mesh).write_equation_systems ("RB_sol.e", equation_systems);
234 #endif
235 
236  // Plot the first basis function that was generated from the train_reduced_basis
237  // call in the Offline stage
238  rb_con.load_basis_function(0);
239 #ifdef LIBMESH_HAVE_EXODUS_API
240  ExodusII_IO(mesh).write_equation_systems ("bf0.e", equation_systems);
241 #endif
242  }
243  }
244 
245 #endif // LIBMESH_ENABLE_DIRICHLET
246 
247  return 0;
248 }

References libMesh::EquationSystems::add_system(), libMesh::MeshTools::Generation::build_square(), libMesh::ParallelObject::comm(), libMesh::default_solver_package(), dim, libMesh::RBConstruction::get_rb_evaluation(), libMesh::TriangleWrapper::init(), libMesh::EquationSystems::init(), libMesh::RBConstruction::initialize_rb_construction(), libMesh::INVALID_SOLVER_PACKAGE, libMesh::RBEvaluation::legacy_write_offline_data_to_files(), libMesh::RBConstruction::load_basis_function(), libMesh::RBConstruction::load_rb_solution(), mesh, libMesh::MeshTools::n_elem(), libMesh::out, libMesh::RBConstruction::print_basis_function_orthogonality(), libMesh::RBConstruction::print_info(), libMesh::EquationSystems::print_info(), libMesh::MeshBase::print_info(), libMesh::RBConstruction::process_parameters_file(), libMesh::QUAD4, libMesh::RBDataDeserialization::RBEvaluationDeserialization::read_from_file(), libMesh::Real, libMesh::RBConstruction::set_rb_evaluation(), libMesh::RBParameters::set_value(), libMesh::RBConstruction::train_reduced_basis(), libMesh::TRILINOS_SOLVERS, libMesh::MeshOutput< MT >::write_equation_systems(), libMesh::RBEvaluation::write_out_basis_functions(), and libMesh::RBDataSerialization::RBEvaluationSerialization::write_to_file().

SimpleRBConstruction
Definition: rb_classes.h:73
libMesh::Mesh
The Mesh class is a thin wrapper, around the ReplicatedMesh class by default.
Definition: mesh.h:50
libMesh::MeshTools::n_elem
dof_id_type n_elem(const MeshBase::const_element_iterator &begin, const MeshBase::const_element_iterator &end)
Count up the number of elements of a specific type (as defined by an iterator range).
Definition: mesh_tools.C:705
libMesh::RBConstruction::process_parameters_file
virtual void process_parameters_file(const std::string &parameters_filename)
Read in from the file specified by parameters_filename and set the this system's member variables acc...
Definition: rb_construction.C:193
libMesh::RBEvaluation::write_out_basis_functions
virtual void write_out_basis_functions(System &sys, const std::string &directory_name="offline_data", const bool write_binary_basis_functions=true)
Write out all the basis functions to file.
Definition: rb_evaluation.C:880
libMesh::System::init
void init()
Initializes degrees of freedom on the current mesh.
Definition: system.C:237
libMesh::RBConstruction::initialize_rb_construction
virtual void initialize_rb_construction(bool skip_matrix_assembly=false, bool skip_vector_assembly=false)
Allocate all the data structures necessary for the construction stage of the RB method.
Definition: rb_construction.C:419
libMesh::RBConstruction::set_rb_evaluation
void set_rb_evaluation(RBEvaluation &rb_eval_in)
Set the RBEvaluation object.
Definition: rb_construction.C:170
libMesh::ParallelObject::comm
const Parallel::Communicator & comm() const
Definition: parallel_object.h:94
libMesh::RBParameters
This class is part of the rbOOmit framework.
Definition: rb_parameters.h:42
libMesh::RBDataSerialization::RBEvaluationSerialization
This class serializes an RBEvaluation object using the Cap'n Proto library.
Definition: rb_data_serialization.h:58
libMesh::default_solver_package
SolverPackage default_solver_package()
Definition: libmesh.C:993
mesh
MeshBase & mesh
Definition: mesh_communication.C:1257
libMesh::ExodusII_IO
The ExodusII_IO class implements reading meshes in the ExodusII file format from Sandia National Labs...
Definition: exodusII_io.h:51
dim
unsigned int dim
Definition: adaptivity_ex3.C:113
libMesh::TriangleWrapper::init
void init(triangulateio &t)
Initializes the fields of t to nullptr/0 as necessary.
libMesh::RBConstruction::print_basis_function_orthogonality
void print_basis_function_orthogonality()
Print out a matrix that shows the orthogonality of the RB basis functions.
Definition: rb_construction.C:348
libMesh::MeshTools::Generation::build_square
void build_square(UnstructuredMesh &mesh, const unsigned int nx, const unsigned int ny, const Real xmin=0., const Real xmax=1., const Real ymin=0., const Real ymax=1., const ElemType type=INVALID_ELEM, const bool gauss_lobatto_grid=false)
A specialized build_cube() for 2D meshes.
Definition: mesh_generation.C:1501
libMesh::RBDataSerialization::RBEvaluationSerialization::write_to_file
void write_to_file(const std::string &path)
Write the Cap'n'Proto buffer to disk.
Definition: rb_data_serialization.C:82
libMesh::INVALID_SOLVER_PACKAGE
Definition: enum_solver_package.h:43
libMesh::QUAD4
Definition: enum_elem_type.h:41
libMesh::RBConstruction::get_rb_evaluation
RBEvaluation & get_rb_evaluation()
Get a reference to the RBEvaluation object.
Definition: rb_construction.C:175
libMesh::RBParameters::set_value
void set_value(const std::string &param_name, Real value)
Set the value of the specified parameter.
Definition: rb_parameters.C:47
libMesh::LibMeshInit
The LibMeshInit class, when constructed, initializes the dependent libraries (e.g.
Definition: libmesh.h:83
libMesh::EquationSystems
This is the EquationSystems class.
Definition: equation_systems.h:74
libMesh::MeshOutput::write_equation_systems
virtual void write_equation_systems(const std::string &, const EquationSystems &, const std::set< std::string > *system_names=nullptr)
This method implements writing a mesh with data to a specified file where the data is taken from the ...
Definition: mesh_output.C:31
libMesh::RBConstruction::print_info
virtual void print_info()
Print out info that describes the current setup of this RBConstruction.
Definition: rb_construction.C:312
libMesh::RBEvaluation::legacy_write_offline_data_to_files
virtual void legacy_write_offline_data_to_files(const std::string &directory_name="offline_data", const bool write_binary_data=true)
Write out all the data to text files in order to segregate the Offline stage from the Online stage.
Definition: rb_evaluation.C:416
libMesh::TRILINOS_SOLVERS
Definition: enum_solver_package.h:37
SimpleRBEvaluation
Definition: rb_classes.h:45
libMesh::RBConstruction::load_basis_function
virtual void load_basis_function(unsigned int i)
Load the i^th RB function into the RBConstruction solution vector.
Definition: rb_construction.C:1305
libMesh::MeshBase::print_info
void print_info(std::ostream &os=libMesh::out) const
Prints relevant information about the mesh.
Definition: mesh_base.C:585
libMesh::RBConstruction::load_rb_solution
virtual void load_rb_solution()
Load the RB solution from the most recent solve with rb_eval into this system's solution vector.
Definition: rb_construction.C:1800
libMesh::RBDataDeserialization::RBEvaluationDeserialization
This class de-serializes an RBEvaluation object using the Cap'n Proto library.
Definition: rb_data_deserialization.h:60
libMesh::Real
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Definition: libmesh_common.h:121
libMesh::out
OStreamProxy out
libMesh::RBConstruction::train_reduced_basis
virtual Real train_reduced_basis(const bool resize_rb_eval_data=true)
Train the reduced basis.
Definition: rb_construction.C:1024