<a href="../../doxygen/deal.II/step_30.html" target="body">30</a>
<a href="../../doxygen/deal.II/step_31.html" target="body">31</a><br />
<a href="../../doxygen/deal.II/step_33.html" target="body">33</a>
- <a href="../../doxygen/deal.II/step_34.html" target="body">34</a>
+ <a href="../../doxygen/deal.II/step_34.html" target="body">34</a>
+ <a href="../../doxygen/deal.II/step_36.html" target="body">36</a>
</p>
<hr>
<td> Boundary element methods (BEM) of low order: Exterior irrotational
flow. The ParsedFunction class.
</td></tr>
+
+ <tr valign="top">
+ <td><a href="../../doxygen/deal.II/step_36.html">Step-36</a></td>
+ <td> Using SLEPc for linear algebra; solving an eigenspectrum
+ problem. The Schrödinger wave equation.
+ </td></tr>
</table>
<a href="../../doxygen/deal.II/step_28.html">Step-28</a>,
<a href="../../doxygen/deal.II/step_29.html">Step-29</a>,
<a href="../../doxygen/deal.II/step_29.html">Step-33</a>,
- <a href="../../doxygen/deal.II/step_33.html">Step-34</a></td>
+ <a href="../../doxygen/deal.II/step_34.html">Step-34</a>,
+ <a href="../../doxygen/deal.II/step_36.html">Step-36</a></td>
<td> Input parameter handling
</td>
</tr>
</td>
</tr>
-
<tr><td><br></td></tr>
<tr valign="top">
</td>
</tr>
+ <tr valign="top">
+ <td><b></b></td>
+ <td><a href="../../doxygen/deal.II/step_36.html">Step-36</a></td>
+ <td> KrylovSchur
+ </td>
+ </tr>
<tr><td><br></td></tr>
</td>
</tr>
- <tr><td><br></td></tr>
+
+ <tr valign="top">
+ <td></td>
+ <td><a href="../../doxygen/deal.II/step_36.html">Step-36</a></td>
+ <td> An eigenspectrum problem
<tr valign="top">
<td><b>Time-dependent problems</b></td>
<td> The Euler equations of compressible gas dynamics
</td>
</tr>
+ </td>
</table>
<!-- Page Foot -->
// representation can now be
// compressed as no more entries
// will be added:
- stiffness_matrix.compress();
- mass_matrix.compress();
+ stiffness_matrix.compress ();
+ mass_matrix.compress ();
}
make_grid_and_dofs ();
std::cout << " Number of active cells: "
- << triangulation.n_active_cells()
+ << triangulation.n_active_cells ()
<< std::endl
<< " Number of degrees of freedom: "
- << dof_handler.n_dofs()
+ << dof_handler.n_dofs ()
<< std::endl
<< std::endl;
// initializes the PETSc work
// space, run the whole
// program, ...
- SlepcInitialize (&argc,&argv,0,0);
+ SlepcInitialize (&argc, &argv, 0, 0);
{
deallog.depth_console (0);
}
// If no exceptions are thrown,
- // then we can tell the program to
- // stop monkeying around and exit
+ // then we tell the program to stop
+ // monkeying around and exit
// nicely:
std::cout << std::endl
<< "Job done."