]>
https://gitweb.dealii.org/ - dealii.git/log
Wolfgang Bangerth [Fri, 8 Apr 2016 17:25:49 +0000 (12:25 -0500)]
Better document what the anisotropic refine flags mean.
Guido Kanschat [Fri, 8 Apr 2016 14:25:54 +0000 (16:25 +0200)]
Merge pull request #2476 from masterleinad/fix_residual_simple
Fix for ResidualSimple such that block vectors always can have multiple blocks
Luca Heltai [Fri, 8 Apr 2016 14:11:37 +0000 (16:11 +0200)]
Merge pull request #2481 from bangerth/update-comment
Update the comment for a variable.
Wolfgang Bangerth [Thu, 7 Apr 2016 21:01:56 +0000 (16:01 -0500)]
Update a comment for a variable.
David Wells [Fri, 8 Apr 2016 02:16:46 +0000 (22:16 -0400)]
Merge pull request #2479 from bangerth/better-unit_tangentials-data-structure-2
Use a fixed size data structure for MappingManifold::InternalData::unit_tangentials.
David Wells [Thu, 7 Apr 2016 21:47:51 +0000 (17:47 -0400)]
Merge pull request #2480 from bangerth/fix-warnings-7
Avoid warnings with unused variables.
Wolfgang Bangerth [Thu, 7 Apr 2016 20:47:43 +0000 (15:47 -0500)]
Avoid warnings with unused variables.
Wolfgang Bangerth [Thu, 7 Apr 2016 20:37:43 +0000 (15:37 -0500)]
Use a fixed size data structure for MappingManifold::InternalData::unit_tangentials.
Wolfgang Bangerth [Thu, 7 Apr 2016 20:28:23 +0000 (15:28 -0500)]
Merge pull request #2272 from luca-heltai/mapping-manifold
First working version of MappingManifold
Daniel Arndt [Wed, 6 Apr 2016 17:56:03 +0000 (19:56 +0200)]
Fix for ResidualSimple
David Wells [Thu, 7 Apr 2016 12:51:45 +0000 (08:51 -0400)]
Merge pull request #2471 from bangerth/better-unit_tangentials-data-structure
Better unit tangentials data structure
Wolfgang Bangerth [Mon, 4 Apr 2016 02:31:33 +0000 (21:31 -0500)]
Use a fixed size data structure for MappingFEField::InternalData::unit_tangentials.
Wolfgang Bangerth [Sun, 3 Apr 2016 15:07:09 +0000 (10:07 -0500)]
Use a fixed size data structure for MappingQGeneric::InternalData::unit_tangentials.
Wolfgang Bangerth [Thu, 7 Apr 2016 02:18:43 +0000 (21:18 -0500)]
Merge pull request #2442 from danshapero/subscriptor-move-ctor
added move constructor to Subscriptor
danshapero [Wed, 6 Apr 2016 21:39:30 +0000 (14:39 -0700)]
Removed unnecessary cleanup in subscriptor dtor/move ctor
Bruno Turcksin [Wed, 6 Apr 2016 21:14:51 +0000 (16:14 -0500)]
Merge pull request #2472 from bangerth/fix-warnings-6
Avoid a warning.
Wolfgang Bangerth [Wed, 6 Apr 2016 21:11:53 +0000 (16:11 -0500)]
Merge pull request #2470 from tjhei/8_4_1_changelog
update 8.4.1 changelog
Wolfgang Bangerth [Wed, 6 Apr 2016 21:07:49 +0000 (16:07 -0500)]
Avoid a warning.
This fixes a warning introduced in #2449. There, @drwells had asked me
why I wrote
for (std::size_t i=0; i!=N; ++i)
when I could have written
for (std::size_t i=0; i<N; ++i)
I didn't remember and changed it to the latter, which did not warn on
my laptop but does now on the compute server. The reason is that N is
of type std::size_t, which turns out to be unsigned, and so warns if
we happen to have N==0. This patch fixes the issue.
Timo Heister [Wed, 6 Apr 2016 20:37:30 +0000 (22:37 +0200)]
update 8.4.1 changelog
David Wells [Wed, 6 Apr 2016 19:41:46 +0000 (15:41 -0400)]
Merge pull request #2449 from bangerth/more-memory-consumption
Add memory_consumption() for std_cxx11::array objects.
Luca Heltai [Wed, 6 Apr 2016 17:58:45 +0000 (19:58 +0200)]
Added normal to test.
Luca Heltai [Wed, 6 Apr 2016 17:14:55 +0000 (19:14 +0200)]
Doc changes and minor adjustments.
danshapero [Wed, 6 Apr 2016 16:58:10 +0000 (09:58 -0700)]
Factored out Subscriptor error checking into member function
Wolfgang Bangerth [Wed, 6 Apr 2016 11:12:58 +0000 (06:12 -0500)]
Merge pull request #2467 from tjhei/pr2444
fix doxygen @name wrapping
Luca Heltai [Wed, 6 Apr 2016 10:15:22 +0000 (12:15 +0200)]
Moved weights inside data
Luca Heltai [Mon, 28 Mar 2016 11:44:18 +0000 (13:44 +0200)]
Added step-3 using MappingManifold.
Luca Heltai [Mon, 28 Mar 2016 11:32:47 +0000 (13:32 +0200)]
Removed unused declaration. Added assertions on flags.
Luca Heltai [Mon, 28 Mar 2016 11:17:53 +0000 (13:17 +0200)]
Removed the static FEQ(1)
Luca Heltai [Mon, 28 Mar 2016 10:52:55 +0000 (12:52 +0200)]
Fixed JxW values on faces.
Luca Heltai [Mon, 28 Mar 2016 09:37:12 +0000 (11:37 +0200)]
Fixed and cleaned some tests.
Luca Heltai [Mon, 28 Mar 2016 09:31:48 +0000 (11:31 +0200)]
Added check on Jacobians on faces for FlatManifold.
Luca Heltai [Mon, 28 Mar 2016 09:23:54 +0000 (11:23 +0200)]
Checked FEFaceValues quadrature points.
Luca Heltai [Sat, 26 Mar 2016 09:47:59 +0000 (10:47 +0100)]
Fixed issue with periodicity.
Luca Heltai [Fri, 11 Mar 2016 11:29:44 +0000 (12:29 +0100)]
Made fe_q a public static member of MappingManifold.
Luca Heltai [Fri, 11 Mar 2016 10:45:13 +0000 (11:45 +0100)]
Minor issues.
Luca Heltai [Mon, 7 Mar 2016 13:08:06 +0000 (14:08 +0100)]
Fixed memory consumption.
Luca Heltai [Sat, 5 Mar 2016 15:53:37 +0000 (16:53 +0100)]
Fixed quadrature points on faces for MappingManifold.
Luca Heltai [Sat, 5 Mar 2016 15:27:42 +0000 (16:27 +0100)]
Respect face manifolds.
Luca Heltai [Sat, 5 Mar 2016 13:35:38 +0000 (14:35 +0100)]
MappingManifold now works on faces.
Luca Heltai [Thu, 3 Mar 2016 19:54:17 +0000 (20:54 +0100)]
Fixed Jacobian for FlatManifold.
Luca Heltai [Thu, 3 Mar 2016 19:28:10 +0000 (20:28 +0100)]
Fixed Jacobian for square mesh.
Luca Heltai [Thu, 3 Mar 2016 19:10:54 +0000 (20:10 +0100)]
Restored most of Jacobian related code.
Luca Heltai [Thu, 3 Mar 2016 18:52:56 +0000 (19:52 +0100)]
Fixing Jacobians.
Luca Heltai [Thu, 3 Mar 2016 18:03:35 +0000 (19:03 +0100)]
First shot at Jacobians
alberto sartori [Thu, 3 Mar 2016 15:08:30 +0000 (16:08 +0100)]
Mapping Manifold Test 03
Luca Heltai [Thu, 3 Mar 2016 14:43:24 +0000 (15:43 +0100)]
Fixed test one and two
Luca Heltai [Thu, 3 Mar 2016 13:58:53 +0000 (14:58 +0100)]
Fixed name, fixed bug.
Luca Heltai [Thu, 3 Mar 2016 09:46:32 +0000 (10:46 +0100)]
Removed a couple of functions.
Luca Heltai [Wed, 2 Mar 2016 15:47:31 +0000 (16:47 +0100)]
Fixed test compilation.
Luca Heltai [Wed, 2 Mar 2016 15:00:25 +0000 (16:00 +0100)]
Fixed compilation.
Luca Heltai [Wed, 2 Mar 2016 14:49:42 +0000 (15:49 +0100)]
Removed unused bits.
alberto sartori [Wed, 2 Mar 2016 14:33:44 +0000 (15:33 +0100)]
Mapping Manifold Test 02
alberto sartori [Wed, 2 Mar 2016 14:01:27 +0000 (15:01 +0100)]
Mapping Manifold Test 01
alberto sartori [Wed, 2 Mar 2016 13:59:39 +0000 (14:59 +0100)]
commented some stuff
alberto sartori [Wed, 2 Mar 2016 13:27:45 +0000 (14:27 +0100)]
added instantiation
Luca Heltai [Wed, 2 Mar 2016 13:58:31 +0000 (14:58 +0100)]
Added instantiations for MappingManifold
Luca Heltai [Tue, 1 Mar 2016 18:22:44 +0000 (19:22 +0100)]
Removed some old stuff.
Luca Heltai [Tue, 1 Mar 2016 10:48:50 +0000 (11:48 +0100)]
Test for bug #1646
Luca Heltai [Mon, 29 Feb 2016 16:46:00 +0000 (17:46 +0100)]
Removed polynomial degree.
Luca Heltai [Mon, 29 Feb 2016 15:51:53 +0000 (16:51 +0100)]
Copy of mapping generic.
Timo Heister [Wed, 6 Apr 2016 09:47:15 +0000 (11:47 +0200)]
teach wrapcomments.py about @name
Timo Heister [Wed, 6 Apr 2016 09:46:59 +0000 (11:46 +0200)]
fix wrong wrapping
Timo Heister [Wed, 6 Apr 2016 09:48:00 +0000 (05:48 -0400)]
Merge pull request #2444 from bangerth/update-docs-55
Fix doxygen markup.
Wolfgang Bangerth [Tue, 5 Apr 2016 17:19:15 +0000 (12:19 -0500)]
Merge pull request #2464 from tjhei/cone_bdry_bug
fix bug in ConeBoundary::get_normals_at_vertices
Timo Heister [Tue, 5 Apr 2016 16:35:54 +0000 (18:35 +0200)]
fix bug in ConeBoundary::get_normals_at_vertices
Wolfgang Bangerth [Tue, 5 Apr 2016 14:02:26 +0000 (09:02 -0500)]
Merge pull request #2463 from Rombur/fix_clang_no_cxx11
Fix to make compile with clang-no-c++11.
Bruno Turcksin [Tue, 5 Apr 2016 13:50:57 +0000 (09:50 -0400)]
Fix to make compile with clang-no-c++11.
Timo Heister [Tue, 5 Apr 2016 12:15:05 +0000 (08:15 -0400)]
Merge pull request #2461 from bangerth/fix-warning-3
Avoid warnings about unused variables.
Wolfgang Bangerth [Mon, 4 Apr 2016 21:18:50 +0000 (16:18 -0500)]
Avoid warnings about unused variables.
Wolfgang Bangerth [Mon, 4 Apr 2016 17:38:38 +0000 (12:38 -0500)]
Merge pull request #2456 from tjhei/set_all_manifold_empty_error
confusing set_all_manifold* errors if empty
Wolfgang Bangerth [Mon, 4 Apr 2016 17:36:57 +0000 (12:36 -0500)]
Merge pull request #2457 from samiiali/periodic_neighbor_fix
Removing unnecessary `typedef` in `tria_accessor.cc` and fixing documentation
Timo Heister [Mon, 4 Apr 2016 16:55:50 +0000 (12:55 -0400)]
confusing set_all_manifold* errors if empty
The error messages for set_all_manifold_ids* are confusing if the mesh
is empty:
An error occurred in line <10760> of file </ssd/deal-
git/source/grid/tria.cc> in function
dealii::Triangulation<dim, spacedim>::raw_quad_iterator
dealii::Triangulation<dim, spacedim>::begin_raw_quad(unsigned int) const
[with int dim = 2, int spacedim = 2, dealii::Triangulation<dim,
spacedim>::raw_quad_iterator =
dealii::TriaRawIterator<dealii::CellAccessor<2, 2> >]
The violated condition was:
level<n_global_levels() || level<levels.size()
The name and call sequence of the exception was:
ExcInvalidLevel(level)
Additional Information:
The given level 0 is not in the valid range!
Fix that.
Ali Samii [Mon, 4 Apr 2016 16:44:33 +0000 (11:44 -0500)]
Removing some unnecessary typedef
Wolfgang Bangerth [Mon, 4 Apr 2016 15:52:45 +0000 (10:52 -0500)]
Merge pull request #2455 from davydden/step36_doc_typo
fix a typo in step-36 documentation
Denis Davydov [Mon, 4 Apr 2016 15:13:17 +0000 (17:13 +0200)]
fix a typo in step-36 documentation
Wolfgang Bangerth [Mon, 4 Apr 2016 02:43:37 +0000 (21:43 -0500)]
Add a test, inspired by @drwells.
Bruno Turcksin [Mon, 4 Apr 2016 14:37:06 +0000 (09:37 -0500)]
Merge pull request #2448 from kronbichler/master
Fix mg transfer for for minlevel > 0
Bruno Turcksin [Mon, 4 Apr 2016 13:34:07 +0000 (08:34 -0500)]
Merge pull request #2453 from tjhei/stray_typename
Stray typename
Timo Heister [Mon, 4 Apr 2016 13:04:32 +0000 (15:04 +0200)]
more typename
Timo Heister [Mon, 4 Apr 2016 13:00:01 +0000 (15:00 +0200)]
remove typename
Timo Heister [Mon, 4 Apr 2016 12:37:19 +0000 (08:37 -0400)]
remove stray typename
This is a compiler error with gcc 4.4
Wolfgang Bangerth [Sun, 3 Apr 2016 15:05:27 +0000 (10:05 -0500)]
Add memory_consumption() for std_cxx11::array objects.
Wolfgang Bangerth [Mon, 4 Apr 2016 00:15:45 +0000 (19:15 -0500)]
Merge pull request #2451 from masterleinad/fix_exceptions
Fix exceptions if we are not in namespace dealii
Daniel Arndt [Sun, 3 Apr 2016 16:48:41 +0000 (18:48 +0200)]
Fix Exceptions if we are not in namespace dealii
Denis Davydov [Sun, 3 Apr 2016 16:25:04 +0000 (18:25 +0200)]
Merge pull request #2450 from bangerth/fix-2445
Fix a failing compilation.
Wolfgang Bangerth [Sun, 3 Apr 2016 15:22:32 +0000 (10:22 -0500)]
Fix a failing compilation.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:43 +0000 (13:11 +0200)]
Mention change
Martin Kronbichler [Sun, 3 Apr 2016 11:11:26 +0000 (13:11 +0200)]
Tests for minlevel>0.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:12 +0000 (13:11 +0200)]
Fix mg transfer for minlevel > 0.
Martin Kronbichler [Sun, 3 Apr 2016 10:52:35 +0000 (12:52 +0200)]
Merge pull request #2446 from tjhei/test_console
tests: restore option to print to console with deallog
Timo Heister [Sun, 3 Apr 2016 08:35:50 +0000 (10:35 +0200)]
tests: restore option to print to console with deallog
The recent change to the default of deallog.depth_console (now 0) broke
the bool console parameter to the various init() functions used in
tests. Restore this feature.
Wolfgang Bangerth [Sat, 2 Apr 2016 18:37:45 +0000 (13:37 -0500)]
Fix doxygen markup.
danshapero [Fri, 1 Apr 2016 14:39:22 +0000 (07:39 -0700)]
Indentation fix
Bruno Turcksin [Fri, 1 Apr 2016 14:17:28 +0000 (09:17 -0500)]
Merge pull request #2441 from masterleinad/fix_accessor_warning
Fix warning in tria_accessor.cc
Daniel Arndt [Fri, 1 Apr 2016 11:55:20 +0000 (13:55 +0200)]
Fix warning in tria_accessor.cc
Martin Kronbichler [Fri, 1 Apr 2016 06:18:41 +0000 (08:18 +0200)]
Merge pull request #2395 from masterleinad/periodic_neighbor
Periodic neighbors
danshapero [Fri, 1 Apr 2016 03:56:45 +0000 (20:56 -0700)]
Test of SparseMatrix move ctor checks that ExcInUse is thrown
danshapero [Fri, 1 Apr 2016 03:56:15 +0000 (20:56 -0700)]
SparseMatrix move ctor now moves its parent Subscriptor
danshapero [Fri, 1 Apr 2016 03:53:55 +0000 (20:53 -0700)]
Added move constructor to Subscriptor
A subscriptor can only be moved if there are no other objects
subscribing to it. This condition is already checked in a sensible
way in the destructor for Subscriptor, so rather than add a bunch
of boilerplate, the move constructor just invokes the destructor.
Daniel Arndt [Thu, 31 Mar 2016 23:52:58 +0000 (01:52 +0200)]
Fix initial lines in test output
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.