<head>
<link href="../screen.css" rel="StyleSheet" media="screen">
<title>The deal.II Publication List</title>
- <meta name="copyright" content="Copyright (C) 1998 - 2013 by the deal.II Authors">
+ <meta name="copyright" content="Copyright (C) 1998 - 2014 by the deal.II Authors">
<meta name="keywords" content="dealII publications">
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<style type="text/css">
Powder Technology, vol. 253, pp. 311-324, 2014.
</li>
+ <li> C.-C. Chueh, A. Bertei, J. Pharoah, C. Nicolella
+ <br>
+ <strong>Effective Conductivity in Random Porous Media with Convex and Non-Convex Porosity
+ </strong>
+ <br>
+ International Journal of Heat and Mass Transfer, vol. 71, pp. 183-188, 2014.
+ </li>
+
<li> T. Wick, G. Singh, M.F. Wheeler
<br>
<strong>Pressurized-Fracture propagation using a phase-field approach coupled to a reservoir simulator
*
* <ol>
*
- * <li> Sort the cells according to descenting values of @p criteria.
+ * <li> Sort the cells according to descending values of @p criteria.
*
* <li> Set the refinement threshold to be the criterion belonging to
* the cell at position @p top_fraction_of_cells times
fe_index_old = fe_index;
fe_index += fe.element_multiplicity (i) * fe.base_element (i).n_components ();
- if (fe_index >= first_vector_component)
+ if (fe_index > first_vector_component)
break;
}
&& (fe.base_element (base_indices.first).face_to_cell_index (line * fe.degree, face)
<= fe.system_to_base_index (fe.face_to_cell_index (i, face)).second)
&& (fe.system_to_base_index (fe.face_to_cell_index (i, face)).second
- <= fe.base_element (base_indices.first).face_to_cell_index
- ((line + 1) * fe.degree - 1, face)))
+ < fe.base_element (base_indices.first).face_to_cell_index
+ ((line + 1) * fe.degree, face)))
|| ((dynamic_cast<const FE_Nedelec<dim>*> (&fe) != 0) && (line * fe.degree <= i)
&& (i < (line + 1) * fe.degree)))
{
fe_index_old = fe_index;
fe_index += fe.element_multiplicity (i) * fe.base_element (i).n_components ();
- if (fe_index >= first_vector_component)
+ if (fe_index > first_vector_component)
break;
}
template <int dim, int spacedim>
void
extract_non_interface_dofs (const DoFHandler<dim,spacedim> &mg_dof_handler,
- std::vector<std::set<unsigned int> > &non_interface_dofs)
+ std::vector<std::set<types::global_dof_index> > &non_interface_dofs)
{
Assert (non_interface_dofs.size() == mg_dof_handler.get_tria().n_global_levels(),
ExcDimensionMismatch (non_interface_dofs.size(),