]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Change update_cell_normal_vectors to update_normal_vectors
authorJonathan Robey <class4kayaker@gmail.com>
Thu, 1 Sep 2016 01:01:06 +0000 (18:01 -0700)
committerJonathan Robey <class4kayaker@gmail.com>
Thu, 1 Sep 2016 01:01:06 +0000 (18:01 -0700)
include/deal.II/fe/fe_poly.templates.h
include/deal.II/fe/fe_poly_face.templates.h
source/fe/fe_face.cc

index 3caeaa7a61837ce71d2b20e9267dc6af66c9e797..5e9f4aae0aa282f9d0af2dfde956f6e3ca57a3ec 100644 (file)
@@ -199,8 +199,8 @@ FE_Poly<PolynomialType,dim,spacedim>::requires_update_flags (const UpdateFlags f
            | update_hessians | update_gradients
            | update_jacobian_pushed_forward_grads
            | update_jacobian_pushed_forward_2nd_derivatives;
-  if (flags & update_cell_normal_vectors)
-    out |= update_cell_normal_vectors | update_JxW_values;
+  if (flags & update_normal_vectors)
+    out |= update_normal_vectors | update_JxW_values;
 
   return out;
 }
index 6b9a74e8e33c7e6168efeb3df4e3647957cdfb6c..d2f1b776f71a5994a191c8946f6602de81968074 100644 (file)
@@ -58,8 +58,8 @@ FE_PolyFace<PolynomialType,dim,spacedim>::requires_update_flags (const UpdateFla
     out |= update_gradients | update_covariant_transformation;
   if (flags & update_hessians)
     out |= update_hessians | update_covariant_transformation;
-  if (flags & update_cell_normal_vectors)
-    out |= update_cell_normal_vectors | update_JxW_values;
+  if (flags & update_normal_vectors)
+    out |= update_normal_vectors | update_JxW_values;
 
   return out;
 }
index b0662792ff0f694480bfc319c2a276608ec9711b..b77a6ff8425931710a913a86aca8ccd2031050e2 100644 (file)
@@ -449,8 +449,8 @@ FE_FaceQ<1,spacedim>::requires_update_flags (const UpdateFlags flags) const
     out |= update_gradients | update_covariant_transformation;
   if (flags & update_hessians)
     out |= update_hessians | update_covariant_transformation;
-  if (flags & update_cell_normal_vectors)
-    out |= update_cell_normal_vectors | update_JxW_values;
+  if (flags & update_normal_vectors)
+    out |= update_normal_vectors | update_JxW_values;
 
   return out;
 }

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.