Wasim,
I don't know which lines you specifically mean where you ask what they do, but it seems like you're down to basic questions about C++ for which there may be other forums better suited?

Best
 W.


On 10/17/22 00:39, Wasim Niyaz Munshi ce21d400 wrote:
*** Caution: EXTERNAL Sender ***

I printed out my map object after calling set_up_boundary_values and then after calling assemble_system. I was making some mistakes in filling the boundary_values in asseble_system. I was fixing my 2 nodes on the top face in x.
I fixed that now.
But the bottom right node was still getting fixed in x.
Also, the top left node is fixed in x after calling set_up_system, although it is then given overwritten with the prescribed value of y-displacement after calling assemble_system.
I am writing the std::map boundary_values object at different instances
1. boundary values after set up bv
0 0
1 0
2 0
3 0
5 0
2.boundary values after assemble system
0 0
1 0
2 0
3 0
5 1.2 //this is prescribed value of y displacement on top face
7 1.2

Then, I commented out the following highlighted lines in set_up_boundary_values:

const auto vert = cell->vertex(vertex_number);
  if (std::fabs(vert(0) - (0)) < 1e-12 &&
  std::fabs(vert(1) - (0)) < 1e-12)
  {

  types::global_dof_index x_displacement =
  cell->vertex_dof_index(vertex_number, 0);
  types::global_dof_index y_displacement =
  cell->vertex_dof_index(vertex_number, 1);
  types::global_dof_index x_displacement_multiplier =
  cell->vertex_dof_index(vertex_number, 2);
  types::global_dof_index y_displacement_multiplier =
  cell->vertex_dof_index(vertex_number, 3);
  boundary_values[x_displacement] = 0;
  boundary_values[y_displacement] = 0;
*/*boundary_values[x_displacement_multiplier] = 0;
  boundary_values[y_displacement_multiplier] = 0;*/*
  }
  else if (std::fabs(vert(0) - 1) < 1e-12 &&
  std::fabs(vert(1) - (0)) < 1e-12)
  {
  std::cout<<"vert_0 = "<<vert(0)<<std::endl;
  std::cout<<"vert_1 = "<<vert(1)<<std::endl;
  types::global_dof_index y_displacement =
  cell->vertex_dof_index(vertex_number, 1);
  types::global_dof_index y_displacement_multiplier =
  cell->vertex_dof_index(vertex_number, 3);
  boundary_values[y_displacement] = 0;
*//boundary_values[y_displacement_multiplier] = 0;*
*
*
This gives me the expected values in the std::map.
Can you please explain what these lines do?
Thanks
Wasim

On Mon, Oct 17, 2022 at 9:46 AM Wolfgang Bangerth <[email protected] <mailto:[email protected]>> wrote:


    Wasim:
    you already identified that something might be wrong with the boundary 
values
    map. So output the elements of the map and inspect them. Is the number of
    elements in the map as expected? Are the values in the map what you think
    they
    are?

    Best
       W.


    On 10/15/22 04:40, Wasim Niyaz Munshi ce21d400 wrote:
     > *** Caution: EXTERNAL Sender ***
     >
     > Hello everyone.
     >
     > I was able to apply the boundary conditions I mentioned earlier:
     > Fix the lower left node in both x and y, and also fix the lower right
    node in y.
     > The lower right node is free to move in x.
     > I am also applying a displacement in y on the top face.
     >
     > For this problem, both x and y displacement fields are expected to be
    linear.
     > y displacement filed is as expected.
     >   I expect my x displacement field to be a linear function of x, zero
    for the
     > left face.
     > But, somehow, my nodes on the right edge are also being fixed in x. So, x
     > displacement is zero everywhere.
     >
     > I am unable to figure out why this is happening.
     >
     > I am creating std::map boundary_values object to apply my boundary
    conditions.
     > First, in setup_boundary_values(), I fill it with the boundary 
information
     > related to bottom 2 nodes.(Similar to step 79)
     > Next, I use the same boundary_values object to apply  y displacement on
    the
     > top face as shown below:
     >
     >   VectorTools::interpolate_boundary_values(dof_handler,
     >                                                       1,
     >
     > Functions::ConstantFunction<2>(u_x_values,2),
>  boundary_values,u_x_mask);
     >                                                       //imposing u_x=0
    on top face
     >    VectorTools::interpolate_boundary_values(dof_handler,
     >                                                           1,
     >
     > Functions::ConstantFunction<2>(u_y_values,2),
>  boundary_values,u_y_mask
     >                                                           );//imposing
     > u_y=0.05 on top face
     >
     >
     > Thank You
     >
     > On Wednesday, October 12, 2022 at 9:59:35 PM UTC+5:30 Wasim Niyaz Munshi
     > ce21d400 wrote:
     >
     >     Thank you Prof. Bangerth.
     >
     >     I was indeed calling the setup_boundary_values() function before call
     >     dof_handler.distribute_dofs().
     >     I made the necessary adjustments.
     >     It is working fine now
     >
     >     Thanks
     >
     >     Wasim Niyaz
     >     Research scholar
     >     CE Dept.
     >     IITM
     >
     >     On Tue, 11 Oct, 2022, 7:03 pm Wolfgang Bangerth,
    <[email protected] <mailto:[email protected]>>
     >     wrote:
     >
     >
     >         Wasim,
     >         I imagine you are calling your setup_boundary_values() function
    before
     >         you
     >         call dof_handler.distribute_dofs()?
     >         Best
     >            W.
     >
     >         On 10/11/22 05:16, Wasim Niyaz Munshi ce21d400 wrote:
     >          > *** Caution: EXTERNAL Sender ***
     >          >
     >          > I was using a constraint object to apply the boundary 
conditions
     >         and component
     >          > mask to deal with hanging nodes and apply x and y 
displacements
     >         separately.
     >          > Now, I want to solve an elasticity problem on a unit square
    wherein
     >         I want to
     >          > apply a displacement in y direction on top face and have a
    pin and
     >         roller
     >          > support at lower left and right node respectively.
     >          > I tried to do this as follows:
     >          > 1. I used the constraint object to apply displacement in y
     >         direction on top face.
     >          > 2. I created a std::map boundary_values object to enforce a
    pin and
     >         roller
     >          > support bc at lower left and right node respectively.
     >          > I took a look at step79. They seem to have similar dirichlet
    bc at
     >         the bottom
     >          > but apply a neumann bc at the top. I followed a similar
    procedure
     >         to have a
     >          > pin and roller bc at lower left and right node
    respectively(using the
     >          > setup_boundary_values class as they have done).
     >          >
     >          >
     >          > My code throws the following error:
     >          > An error occurred in line <324> of file
     >          >
>  </home/wasim/dealii-candi/deal.II-v9.4.0/include/deal.II/dofs/dof_accessor.templates.h>
     >
     >          > in function
     >          >      static void
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::process_dof_index(const
     >
     >          > dealii::DoFHandler<dim, spacedim>&, unsigned int, unsigned 
int,
     >         unsigned int,
     >          > unsigned int, const std::integral_constant<int, structdim>&,
     >         GlobalIndexType&,
     >          > const DoFPProcessor&) [with int dim = 2; int spacedim = 2; int
     >         structdim = 0;
     >          > GlobalIndexType = unsigned int; DoFPProcessor =
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::get_dof_index<2,
     >
     >          > 2, 0>::<lambda(const auto:9&, auto:10&)>]
     >          > The violated condition was:
     >          >
>  ::dealii::deal_II_exceptions::internals::compare_less_than(obj_level,
     >          > dof_handler.object_dof_indices.size())
     >          > Additional information:
     >          >      Index 0 is not in the half-open range [0,0). In the 
current
     >         case, this
     >          >      half-open range is in fact empty, suggesting that you are
     >         accessing an
     >          >      element of an empty collection such as a vector that
    has not
     >         been set
     >          >      to the correct size.
     >          >
     >          > Stacktrace:
     >          > -----------
     >          > #0  ./step-103: void
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::process_dof_index<2,
     >
     >          > 2, 0, unsigned int,
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::get_dof_index<2,
     >
     >          > 2, 0>(dealii::DoFHandler<2, 2> const&, unsigned int,
    unsigned int,
     >         unsigned
     >          > int, unsigned int, std::integral_constant<int, 0>
     >         const&)::{lambda(auto:1
     >          > const&, auto:2&)#1}>(dealii::DoFHandler<2, 2> const&,
    unsigned int,
     >         unsigned
     >          > int, unsigned int, unsigned int, std::integral_constant<int, 
0>
     >         const&,
     >          > unsigned int&,
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::get_dof_index<2,
     >
     >          > 2, 0>(dealii::DoFHandler<2, 2> const&, unsigned int,
    unsigned int,
     >         unsigned
     >          > int, unsigned int, std::integral_constant<int, 0>
     >         const&)::{lambda(auto:1
     >          > const&, auto:2&)#1} const&)
     >          > #1  ./step-103: unsigned int
     >          >
>  dealii::internal::DoFAccessorImplementation::Implementation::get_dof_index<2,
     >
     >          > 2, 0>(dealii::DoFHandler<2, 2> const&, unsigned int,
    unsigned int,
     >         unsigned
     >          > int, unsigned int, std::integral_constant<int, 0> const&)
     >          > #2  ./step-103: dealii::DoFAccessor<2, 2, 2,
     >         false>::vertex_dof_index(unsigned
     >          > int, unsigned int, unsigned int) const
     >          > #3  ./step-103: 
step103::ElasticProblem::setup_boundary_values()
     >          > #4  ./step-103: step103::ElasticProblem::run()
     >          > #5  ./step-103: main
     >          > --------------------------------------------------------
     >          >
     >          > make[3]: *** [CMakeFiles/run.dir/build.make:71: 
CMakeFiles/run]
     >         Aborted (core
     >          > dumped)
     >          > make[2]: *** [CMakeFiles/Makefile2:116:
    CMakeFiles/run.dir/all] Error 2
     >          > make[1]: *** [CMakeFiles/Makefile2:123: 
CMakeFiles/run.dir/rule]
     >         Error 2
     >          > make: *** [Makefile:137: run] Error 2
     >          >   Is it because I am applying Dirichlet bc using two objects,
     >         constraints and
     >          > boundary_values?
     >          >
     >          >
     >          > Thank you
     >          >
     >          >
     >          >
     >          > On Mon, Oct 10, 2022 at 7:28 PM Wolfgang Bangerth
     >         <[email protected] <mailto:[email protected]>
     >          > <mailto:[email protected]
    <mailto:[email protected]>>> wrote:
     >          >
     >          >     On 10/10/22 07:42, Wasim Niyaz Munshi ce21d400 wrote:
     >          >      > I am trying to solve the elasticity equation on a
    square domain
     >          >     (similar to
     >          >      > step 8).
     >          >      > For the patch test I am using just one element.
     >          >      > I am having problems with the application of boundary
     >         conditions.
     >          >      > I want to fix the lower left node in both x and y,
    and also
     >         fix the lower
     >          >      > right node in y.
     >          >      > The lower right node is free to move in x.
     >          >      > The problem I am facing is that both these nodes are
    on the
     >         same face,
     >          >     and I
     >          >      > do not know how to specify different values of x
     >         displacement for the 2
     >          >     nodes
     >          >      > of the same face.
     >          >      >
     >          >      > Is there a way to set boundary id to a node rather
    than to a
     >         face?
     >          >
     >          >     No -- principally because from a mathematical
    perspective, you
     >         can only set
     >          >     boundary indicators on parts of the boundary that have 
(d-1)
     >         dimensional
     >          >     measure larger than zero. Vertices do not satisfy this.
     >          >
     >          >     But it is a common thing to do anyway. You might want to
    look
     >         at the step-79
     >          >     that does something similar.
     >          >
     >          >     Best
     >          >        W>
     >          >
     >          >
     >          >     --
     >          >
>  ------------------------------------------------------------------------
     >          >     Wolfgang Bangerth          email: [email protected]
    <mailto:[email protected]>
     >          >     <mailto:[email protected]
    <mailto:[email protected]>>
     >          >                                  www:
     > http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>
     >         <http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>>
     >          >     <http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>
     >         <http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>>>
     >          >
     >          >     --
     >          >     The deal.II project is located at http://www.dealii.org/
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2uEuxdaA5F1F6Z9rbyl1YTiieyjohss%2Bji9T9ZlTYjk%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187609218%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ZmDT8sCi2OoVcip0MYZMha4C1hHOtfNyXM7DfslEON4%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2uEuxdaA5F1F6Z9rbyl1YTiieyjohss%2Bji9T9ZlTYjk%3D&reserved=0>>
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048599291%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=GczFY9xgCuNhKCygAdQqZMzE3pQtDVR%2BJunoKQQyndQ%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2uEuxdaA5F1F6Z9rbyl1YTiieyjohss%2Bji9T9ZlTYjk%3D&reserved=0> <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=HKrd0Er%2FD2wCvZN8%2FLOeOoseRXjRtK4AMZLHrySgEpM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2uEuxdaA5F1F6Z9rbyl1YTiieyjohss%2Bji9T9ZlTYjk%3D&reserved=0>>>
     >          >     For mailing list/forum options, see
     >          > https://groups.google.com/d/forum/dealii?hl=en
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gG1fJBCtS%2B1dX92wLzl51ODI5WRPGJFvXAOMlVt3OCI%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=YEUpVbdmARp4jfoCOULpSO0cErkm%2FHefxiBSekhB7Xw%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gG1fJBCtS%2B1dX92wLzl51ODI5WRPGJFvXAOMlVt3OCI%3D&reserved=0>>
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Al7MfSTwuuRHdmniebbLxp4ugBaX1ddbBdlldSxuX5o%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gG1fJBCtS%2B1dX92wLzl51ODI5WRPGJFvXAOMlVt3OCI%3D&reserved=0> <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=YEUpVbdmARp4jfoCOULpSO0cErkm%2FHefxiBSekhB7Xw%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855959925334%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gG1fJBCtS%2B1dX92wLzl51ODI5WRPGJFvXAOMlVt3OCI%3D&reserved=0>>>
     >          >     ---
     >          >     You received this message because you are subscribed to
    a topic
     >         in the
     >          >     Google Groups "deal.II User Group" group.
     >          >     To unsubscribe from this topic, visit
     >          >
    https://groups.google.com/d/topic/dealii/jI31ro8W_Cg/unsubscribe
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=yX1tc1C7GwrNlkj3%2By7Y45koNU%2FFOVe0rUNPutpR404%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=BX3VBRe58yHGJnS46OlCxQQ4wTdO9ADF1SPEDiVu6g4%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=yX1tc1C7GwrNlkj3%2By7Y45koNU%2FFOVe0rUNPutpR404%3D&reserved=0>>
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=u7Mxyrfrhc1DwitmIF%2BiRyqv2syo1cseWqCO%2Bsvnoyc%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=yX1tc1C7GwrNlkj3%2By7Y45koNU%2FFOVe0rUNPutpR404%3D&reserved=0> <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=BX3VBRe58yHGJnS46OlCxQQ4wTdO9ADF1SPEDiVu6g4%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=yX1tc1C7GwrNlkj3%2By7Y45koNU%2FFOVe0rUNPutpR404%3D&reserved=0>>>.
     >          >     To unsubscribe from this group and all its topics, send
    an email to
     >          > [email protected]
    <mailto:dealii%[email protected]>
     >          >     <mailto:dealii%[email protected]
    <mailto:dealii%[email protected]>>.
     >          >     To view this discussion on the web visit
     >          >
     >
    
https://groups.google.com/d/msgid/dealii/64772c85-044f-3492-5895-b1d6ac398b0f%40colostate.edu
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pM4gTUaQTaEw%2FQzNKwPCrXKLxMcEswV3OuAcSgmeQwY%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4%2FpuOn1wnfaTMORbZqaqZe7tUKAQPn%2F3j0Laz3xBBsM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pM4gTUaQTaEw%2FQzNKwPCrXKLxMcEswV3OuAcSgmeQwY%3D&reserved=0>>
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gE%2B7eZCtkI2CnOoTmXDBuSrLav%2FLa1PmFvtYv2EIDW8%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pM4gTUaQTaEw%2FQzNKwPCrXKLxMcEswV3OuAcSgmeQwY%3D&reserved=0> <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4%2FpuOn1wnfaTMORbZqaqZe7tUKAQPn%2F3j0Laz3xBBsM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F64772c85-044f-3492-5895-b1d6ac398b0f%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pM4gTUaQTaEw%2FQzNKwPCrXKLxMcEswV3OuAcSgmeQwY%3D&reserved=0>>>.
     >          >
     >          > --
     >          > The deal.II project is located at http://www.dealii.org/
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=vKzGHnoelNfueXo9eQLbiaJ%2Bc53%2FhU3o1qfYWCflzZI%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=HKrd0Er%2FD2wCvZN8%2FLOeOoseRXjRtK4AMZLHrySgEpM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=vKzGHnoelNfueXo9eQLbiaJ%2Bc53%2FhU3o1qfYWCflzZI%3D&reserved=0>>
     >
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=eJu3T7DEwblMZTdI3vLLnxO2RfznkOCeZEj8k2rSKPY%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=vKzGHnoelNfueXo9eQLbiaJ%2Bc53%2FhU3o1qfYWCflzZI%3D&reserved=0> >  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187765453%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=HKrd0Er%2FD2wCvZN8%2FLOeOoseRXjRtK4AMZLHrySgEpM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960081593%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=vKzGHnoelNfueXo9eQLbiaJ%2Bc53%2FhU3o1qfYWCflzZI%3D&reserved=0>>>
     >          > For mailing list/forum options, see
     >          > https://groups.google.com/d/forum/dealii?hl=en
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187921689%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=DbIwVSTWDdrQz22eVRxkJ%2Bf0hXdm4v1iIaDhH1bq%2Fr0%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0>>
     >
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Al7MfSTwuuRHdmniebbLxp4ugBaX1ddbBdlldSxuX5o%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0> >  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272187921689%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=DbIwVSTWDdrQz22eVRxkJ%2Bf0hXdm4v1iIaDhH1bq%2Fr0%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0>>>
     >          > ---
     >          > You received this message because you are subscribed to the
    Google
     >         Groups
     >          > "deal.II User Group" group.
     >          > To unsubscribe from this group and stop receiving emails
    from it,
     >         send an
     >          > email to [email protected]
    <mailto:dealii%[email protected]>
     >          > <mailto:[email protected]
    <mailto:dealii%[email protected]>>.
     >          > To view this discussion on the web visit
     >          >
     >
    
https://groups.google.com/d/msgid/dealii/CAM8ps5DTY_KXs7MZq%2B_zaW0aB2JemWgJ4SLf3dEow%3D_eqDYutA%40mail.gmail.com
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4144Kxi7nvhaQEFkhtsyvMLcGk3AIsVGvrGWJX0gd3U%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=g0XU39%2Fgh48hcJgfLX4Z1gFvh0TZe4pPHlAzxgH1mrU%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4144Kxi7nvhaQEFkhtsyvMLcGk3AIsVGvrGWJX0gd3U%3D&reserved=0>>
     >
     >          >
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C861d8e11d32747990c3308daab7a1301%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638010838048755540%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=WOjaRCuN9KlVtE1fGxNdAwQ3U0z4x%2FWG4oQ4kGrjWBQ%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=UTeUXBwPdMW8N91W%2B6P35TQazrFOn8YLFmbVY2S6Np0%3D&reserved=0> >  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=SrApzOUrXOY%2B4QhD2ijrC4zVTd13D9E2gtyax5ynkj0%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5DTY_KXs7MZq%252B_zaW0aB2JemWgJ4SLf3dEow%253D_eqDYutA%2540mail.gmail.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=UTeUXBwPdMW8N91W%2B6P35TQazrFOn8YLFmbVY2S6Np0%3D&reserved=0>>>.
     >
     >
     >         --
>  ------------------------------------------------------------------------
     >         Wolfgang Bangerth          email: [email protected]
    <mailto:[email protected]>
     >                                      www:
     > http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>
     >         <http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>>
     >
     >         --
     >         The deal.II project is located at http://www.dealii.org/
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=AEfgchXV6qMVdNdfnb36A4C9kBaFxUh5OsS048t2rqw%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Df6hcuAHc4TAFZBsoz0kbJxoihHH3%2B3Y0X6rxhJUmzY%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=AEfgchXV6qMVdNdfnb36A4C9kBaFxUh5OsS048t2rqw%3D&reserved=0>>
     >         For mailing list/forum options, see
     > https://groups.google.com/d/forum/dealii?hl=en
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2Kq4onKDXe12vSMn1ClTD0bCU%2F7zovz14EDNnN9cOmI%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960237838%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BEA97wIIEPaGPNPncIFv%2FGG%2B8KwxYozsfeydk18capg%3D&reserved=0>>
     >         ---
     >         You received this message because you are subscribed to a topic
    in the
     >         Google Groups "deal.II User Group" group.
     >
     >         To unsubscribe from this topic, visit
     > https://groups.google.com/d/topic/dealii/jI31ro8W_Cg/unsubscribe
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KxHGJJwGz4JD3B7FjlYqzFZ9davCTq365iBZHrmEHas%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=siXfRHOKu9BuMWWfXJJpvTA3TLYWO150RJYqcv7fIBo%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KxHGJJwGz4JD3B7FjlYqzFZ9davCTq365iBZHrmEHas%3D&reserved=0>>.
     >         To unsubscribe from this group and all its topics, send an email 
to
     > [email protected] <mailto:dealii%[email protected]>.
     >         To view this discussion on the web visit
     >
    
https://groups.google.com/d/msgid/dealii/b1a9fa0b-2505-c786-c24b-e98d63ea4aa0%40colostate.edu
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2Fb1a9fa0b-2505-c786-c24b-e98d63ea4aa0%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=6wv4Had53%2FynOaq8UPj46XlAMIywZIzhVXs%2BC2m1q1Q%3D&reserved=0>
>  <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2Fb1a9fa0b-2505-c786-c24b-e98d63ea4aa0%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=OJt31SCRfMPJg8UAnbXhJB%2BEbn5o09ZFsE7DYx%2BG7xM%3D&reserved=0 <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2Fb1a9fa0b-2505-c786-c24b-e98d63ea4aa0%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=6wv4Had53%2FynOaq8UPj46XlAMIywZIzhVXs%2BC2m1q1Q%3D&reserved=0>>.
     >
     > --
     > The deal.II project is located at http://www.dealii.org/
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=XllOyJx8ZTmGzpzCcTkZYo2w8opMvOi%2FYi6FxNvkARI%3D&reserved=0>

     >
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Df6hcuAHc4TAFZBsoz0kbJxoihHH3%2B3Y0X6rxhJUmzY%3D&reserved=0
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=XllOyJx8ZTmGzpzCcTkZYo2w8opMvOi%2FYi6FxNvkARI%3D&reserved=0>>
     > For mailing list/forum options, see
     > https://groups.google.com/d/forum/dealii?hl=en
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zqQpDzC4FidoWG3W1%2FbbLyf1OPhGq0B6eHj2pBB0uDI%3D&reserved=0>

     >
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2Kq4onKDXe12vSMn1ClTD0bCU%2F7zovz14EDNnN9cOmI%3D&reserved=0
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zqQpDzC4FidoWG3W1%2FbbLyf1OPhGq0B6eHj2pBB0uDI%3D&reserved=0>>
     > ---
     > You received this message because you are subscribed to the Google Groups
     > "deal.II User Group" group.
     > To unsubscribe from this group and stop receiving emails from it, send an
     > email to [email protected]
    <mailto:dealii%[email protected]>
     > <mailto:[email protected]
    <mailto:dealii%[email protected]>>.
     > To view this discussion on the web visit
     >
    
https://groups.google.com/d/msgid/dealii/2fb027e7-801a-4962-b5d4-496c21be1e10n%40googlegroups.com
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F2fb027e7-801a-4962-b5d4-496c21be1e10n%2540googlegroups.com&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=ZI0rYiDt0MdOozJTjnTbkxghgdt1y13y70xtLgNWbRo%3D&reserved=0>

     >
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F2fb027e7-801a-4962-b5d4-496c21be1e10n%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7C88f4621afd9f400f143408daae99a1fc%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638014272188077928%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Z5r9lpGKUadzH92ScHuxdMNYe0Xjph5qmZP6Mm1nXi0%3D&reserved=0
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2F2fb027e7-801a-4962-b5d4-496c21be1e10n%2540googlegroups.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=LuaOKH%2Fy4SvxJiuSyEzMUsr5Cmx6Fj5hz86na7HgCj0%3D&reserved=0>>.


-- ------------------------------------------------------------------------
    Wolfgang Bangerth          email: [email protected]
    <mailto:[email protected]>
                                 www: http://www.math.colostate.edu/~bangerth/
    <http://www.math.colostate.edu/~bangerth/>

-- The deal.II project is located at http://www.dealii.org/
    
<https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=XllOyJx8ZTmGzpzCcTkZYo2w8opMvOi%2FYi6FxNvkARI%3D&reserved=0>
    For mailing list/forum options, see
    https://groups.google.com/d/forum/dealii?hl=en
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960394063%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=zqQpDzC4FidoWG3W1%2FbbLyf1OPhGq0B6eHj2pBB0uDI%3D&reserved=0>
    ---
    You received this message because you are subscribed to a topic in the
    Google Groups "deal.II User Group" group.
    To unsubscribe from this topic, visit
    https://groups.google.com/d/topic/dealii/jI31ro8W_Cg/unsubscribe
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Ftopic%2Fdealii%2FjI31ro8W_Cg%2Funsubscribe&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960550308%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Dae2wYkLZpSQAj5UL9U6hpSBzpPdedz%2B0Tw6z2AXidA%3D&reserved=0>.
    To unsubscribe from this group and all its topics, send an email to
    [email protected]
    <mailto:dealii%[email protected]>.
    To view this discussion on the web visit
    
https://groups.google.com/d/msgid/dealii/fd029990-33ef-eb71-52a5-158a652dda97%40colostate.edu
    
<https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2Ffd029990-33ef-eb71-52a5-158a652dda97%2540colostate.edu&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960550308%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=EWj2Y5qCmA6zTHgzcQjc%2BcxYUVHPDWmTDnZanbpb49A%3D&reserved=0>.

--
The deal.II project is located at http://www.dealii.org/ <https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.dealii.org%2F&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960550308%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=IxBy0ZWjFA3%2B0E0u8ZJ23kjcNMtefG9vD3T%2Bb410vNQ%3D&reserved=0> For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fforum%2Fdealii%3Fhl%3Den&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960550308%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=4JohXF9KnCt8oJPlpS6RYBCOXItEbbnO5LiSlr8UFPE%3D&reserved=0>
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/CAM8ps5COYuzknqkqwzBTW8YPVnQ7-PdAAKKRABWtczWp7am7iw%40mail.gmail.com <https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgroups.google.com%2Fd%2Fmsgid%2Fdealii%2FCAM8ps5COYuzknqkqwzBTW8YPVnQ7-PdAAKKRABWtczWp7am7iw%2540mail.gmail.com%3Futm_medium%3Demail%26utm_source%3Dfooter&data=05%7C01%7CWolfgang.Bangerth%40colostate.edu%7Cfe772b5bd3c14f770a3308dab00a6518%7Cafb58802ff7a4bb1ab21367ff2ecfc8b%7C0%7C0%7C638015855960550308%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=s8TwNg39PDUJgaX4j5zLqqLSnWpdJVqVaSYQl3nbp8c%3D&reserved=0>.


--
------------------------------------------------------------------------
Wolfgang Bangerth          email:                 [email protected]
                           www: http://www.math.colostate.edu/~bangerth/

--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/175c0a47-b7f6-8d00-383d-a69e04ec8584%40colostate.edu.

Reply via email to