]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
8 years agoBetter document what the anisotropic refine flags mean. 2485/head
Wolfgang Bangerth [Fri, 8 Apr 2016 17:25:49 +0000 (12:25 -0500)]
Better document what the anisotropic refine flags mean.

8 years agoMerge pull request #2476 from masterleinad/fix_residual_simple
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

8 years agoMerge pull request #2481 from bangerth/update-comment
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.

8 years agoUpdate a comment for a variable. 2481/head
Wolfgang Bangerth [Thu, 7 Apr 2016 21:01:56 +0000 (16:01 -0500)]
Update a comment for a variable.

8 years agoMerge pull request #2479 from bangerth/better-unit_tangentials-data-structure-2
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.

8 years agoMerge pull request #2480 from bangerth/fix-warnings-7
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.

8 years agoAvoid warnings with unused variables. 2480/head
Wolfgang Bangerth [Thu, 7 Apr 2016 20:47:43 +0000 (15:47 -0500)]
Avoid warnings with unused variables.

8 years agoUse a fixed size data structure for MappingManifold::InternalData::unit_tangentials. 2479/head
Wolfgang Bangerth [Thu, 7 Apr 2016 20:37:43 +0000 (15:37 -0500)]
Use a fixed size data structure for MappingManifold::InternalData::unit_tangentials.

8 years agoMerge pull request #2272 from luca-heltai/mapping-manifold
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

8 years agoFix for ResidualSimple 2476/head
Daniel Arndt [Wed, 6 Apr 2016 17:56:03 +0000 (19:56 +0200)]
Fix for ResidualSimple

8 years agoMerge pull request #2471 from bangerth/better-unit_tangentials-data-structure
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

8 years agoUse a fixed size data structure for MappingFEField::InternalData::unit_tangentials. 2471/head
Wolfgang Bangerth [Mon, 4 Apr 2016 02:31:33 +0000 (21:31 -0500)]
Use a fixed size data structure for MappingFEField::InternalData::unit_tangentials.

8 years agoUse a fixed size data structure for MappingQGeneric::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.

8 years agoMerge pull request #2442 from danshapero/subscriptor-move-ctor
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

8 years agoRemoved unnecessary cleanup in subscriptor dtor/move ctor 2442/head
danshapero [Wed, 6 Apr 2016 21:39:30 +0000 (14:39 -0700)]
Removed unnecessary cleanup in subscriptor dtor/move ctor

8 years agoMerge pull request #2472 from bangerth/fix-warnings-6
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.

8 years agoMerge pull request #2470 from tjhei/8_4_1_changelog
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

8 years agoAvoid a warning. 2472/head
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.

8 years agoupdate 8.4.1 changelog 2470/head
Timo Heister [Wed, 6 Apr 2016 20:37:30 +0000 (22:37 +0200)]
update 8.4.1 changelog

8 years agoMerge pull request #2449 from bangerth/more-memory-consumption
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.

8 years agoAdded normal to test. 2272/head
Luca Heltai [Wed, 6 Apr 2016 17:58:45 +0000 (19:58 +0200)]
Added normal to test.

8 years agoDoc changes and minor adjustments.
Luca Heltai [Wed, 6 Apr 2016 17:14:55 +0000 (19:14 +0200)]
Doc changes and minor adjustments.

8 years agoFactored out Subscriptor error checking into member function
danshapero [Wed, 6 Apr 2016 16:58:10 +0000 (09:58 -0700)]
Factored out Subscriptor error checking into member function

8 years agoMerge pull request #2467 from tjhei/pr2444
Wolfgang Bangerth [Wed, 6 Apr 2016 11:12:58 +0000 (06:12 -0500)]
Merge pull request #2467 from tjhei/pr2444

fix doxygen @name wrapping

8 years agoMoved weights inside data
Luca Heltai [Wed, 6 Apr 2016 10:15:22 +0000 (12:15 +0200)]
Moved weights inside data

8 years agoAdded step-3 using MappingManifold.
Luca Heltai [Mon, 28 Mar 2016 11:44:18 +0000 (13:44 +0200)]
Added step-3 using MappingManifold.

8 years agoRemoved unused declaration. Added assertions on flags.
Luca Heltai [Mon, 28 Mar 2016 11:32:47 +0000 (13:32 +0200)]
Removed unused declaration. Added assertions on flags.

8 years agoRemoved the static FEQ(1)
Luca Heltai [Mon, 28 Mar 2016 11:17:53 +0000 (13:17 +0200)]
Removed the static FEQ(1)

8 years agoFixed JxW values on faces.
Luca Heltai [Mon, 28 Mar 2016 10:52:55 +0000 (12:52 +0200)]
Fixed JxW values on faces.

8 years agoFixed and cleaned some tests.
Luca Heltai [Mon, 28 Mar 2016 09:37:12 +0000 (11:37 +0200)]
Fixed and cleaned some tests.

8 years agoAdded check on Jacobians on faces for FlatManifold.
Luca Heltai [Mon, 28 Mar 2016 09:31:48 +0000 (11:31 +0200)]
Added check on Jacobians on faces for FlatManifold.

8 years agoChecked FEFaceValues quadrature points.
Luca Heltai [Mon, 28 Mar 2016 09:23:54 +0000 (11:23 +0200)]
Checked FEFaceValues quadrature points.

8 years agoFixed issue with periodicity.
Luca Heltai [Sat, 26 Mar 2016 09:47:59 +0000 (10:47 +0100)]
Fixed issue with periodicity.

8 years agoMade fe_q a public static member of MappingManifold.
Luca Heltai [Fri, 11 Mar 2016 11:29:44 +0000 (12:29 +0100)]
Made fe_q a public static member of MappingManifold.

8 years agoMinor issues.
Luca Heltai [Fri, 11 Mar 2016 10:45:13 +0000 (11:45 +0100)]
Minor issues.

8 years agoFixed memory consumption.
Luca Heltai [Mon, 7 Mar 2016 13:08:06 +0000 (14:08 +0100)]
Fixed memory consumption.

8 years agoFixed quadrature points on faces for MappingManifold.
Luca Heltai [Sat, 5 Mar 2016 15:53:37 +0000 (16:53 +0100)]
Fixed quadrature points on faces for MappingManifold.

8 years agoRespect face manifolds.
Luca Heltai [Sat, 5 Mar 2016 15:27:42 +0000 (16:27 +0100)]
Respect face manifolds.

8 years agoMappingManifold now works on faces.
Luca Heltai [Sat, 5 Mar 2016 13:35:38 +0000 (14:35 +0100)]
MappingManifold now works on faces.

8 years agoFixed Jacobian for FlatManifold.
Luca Heltai [Thu, 3 Mar 2016 19:54:17 +0000 (20:54 +0100)]
Fixed Jacobian for FlatManifold.

8 years agoFixed Jacobian for square mesh.
Luca Heltai [Thu, 3 Mar 2016 19:28:10 +0000 (20:28 +0100)]
Fixed Jacobian for square mesh.

8 years agoRestored most of Jacobian related code.
Luca Heltai [Thu, 3 Mar 2016 19:10:54 +0000 (20:10 +0100)]
Restored most of Jacobian related code.

8 years agoFixing Jacobians.
Luca Heltai [Thu, 3 Mar 2016 18:52:56 +0000 (19:52 +0100)]
Fixing Jacobians.

8 years agoFirst shot at Jacobians
Luca Heltai [Thu, 3 Mar 2016 18:03:35 +0000 (19:03 +0100)]
First shot at Jacobians

8 years agoMapping Manifold Test 03
alberto sartori [Thu, 3 Mar 2016 15:08:30 +0000 (16:08 +0100)]
Mapping Manifold Test 03

8 years agoFixed test one and two
Luca Heltai [Thu, 3 Mar 2016 14:43:24 +0000 (15:43 +0100)]
Fixed test one and two

8 years agoFixed name, fixed bug.
Luca Heltai [Thu, 3 Mar 2016 13:58:53 +0000 (14:58 +0100)]
Fixed name, fixed bug.

8 years agoRemoved a couple of functions.
Luca Heltai [Thu, 3 Mar 2016 09:46:32 +0000 (10:46 +0100)]
Removed a couple of functions.

8 years agoFixed test compilation.
Luca Heltai [Wed, 2 Mar 2016 15:47:31 +0000 (16:47 +0100)]
Fixed test compilation.

8 years agoFixed compilation.
Luca Heltai [Wed, 2 Mar 2016 15:00:25 +0000 (16:00 +0100)]
Fixed compilation.

8 years agoRemoved unused bits.
Luca Heltai [Wed, 2 Mar 2016 14:49:42 +0000 (15:49 +0100)]
Removed unused bits.

8 years agoMapping Manifold Test 02
alberto sartori [Wed, 2 Mar 2016 14:33:44 +0000 (15:33 +0100)]
Mapping Manifold Test 02

8 years agoMapping Manifold Test 01
alberto sartori [Wed, 2 Mar 2016 14:01:27 +0000 (15:01 +0100)]
Mapping Manifold Test 01

8 years agocommented some stuff
alberto sartori [Wed, 2 Mar 2016 13:59:39 +0000 (14:59 +0100)]
commented some stuff

8 years agoadded instantiation
alberto sartori [Wed, 2 Mar 2016 13:27:45 +0000 (14:27 +0100)]
added instantiation

8 years agoAdded instantiations for MappingManifold
Luca Heltai [Wed, 2 Mar 2016 13:58:31 +0000 (14:58 +0100)]
Added instantiations for MappingManifold

8 years agoRemoved some old stuff.
Luca Heltai [Tue, 1 Mar 2016 18:22:44 +0000 (19:22 +0100)]
Removed some old stuff.

8 years agoTest for bug #1646
Luca Heltai [Tue, 1 Mar 2016 10:48:50 +0000 (11:48 +0100)]
Test for bug #1646

8 years agoRemoved polynomial degree.
Luca Heltai [Mon, 29 Feb 2016 16:46:00 +0000 (17:46 +0100)]
Removed polynomial degree.

8 years agoCopy of mapping generic.
Luca Heltai [Mon, 29 Feb 2016 15:51:53 +0000 (16:51 +0100)]
Copy of mapping generic.

8 years agoteach wrapcomments.py about @name 2467/head
Timo Heister [Wed, 6 Apr 2016 09:47:15 +0000 (11:47 +0200)]
teach wrapcomments.py about @name

8 years agofix wrong wrapping
Timo Heister [Wed, 6 Apr 2016 09:46:59 +0000 (11:46 +0200)]
fix wrong wrapping

8 years agoMerge pull request #2444 from bangerth/update-docs-55
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.

8 years agoMerge pull request #2464 from tjhei/cone_bdry_bug
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

8 years agofix bug in ConeBoundary::get_normals_at_vertices 2464/head
Timo Heister [Tue, 5 Apr 2016 16:35:54 +0000 (18:35 +0200)]
fix bug in ConeBoundary::get_normals_at_vertices

8 years agoMerge pull request #2463 from Rombur/fix_clang_no_cxx11
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.

8 years agoFix to make compile with clang-no-c++11. 2463/head
Bruno Turcksin [Tue, 5 Apr 2016 13:50:57 +0000 (09:50 -0400)]
Fix to make compile with clang-no-c++11.

8 years agoMerge pull request #2461 from bangerth/fix-warning-3
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.

8 years agoAvoid warnings about unused variables. 2461/head
Wolfgang Bangerth [Mon, 4 Apr 2016 21:18:50 +0000 (16:18 -0500)]
Avoid warnings about unused variables.

8 years agoMerge pull request #2456 from tjhei/set_all_manifold_empty_error
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

8 years agoMerge pull request #2457 from samiiali/periodic_neighbor_fix
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

8 years agoconfusing set_all_manifold* errors if empty 2456/head
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.

8 years agoRemoving some unnecessary typedef 2457/head
Ali Samii [Mon, 4 Apr 2016 16:44:33 +0000 (11:44 -0500)]
Removing some unnecessary typedef

8 years agoMerge pull request #2455 from davydden/step36_doc_typo
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

8 years agofix a typo in step-36 documentation 2455/head
Denis Davydov [Mon, 4 Apr 2016 15:13:17 +0000 (17:13 +0200)]
fix a typo in step-36 documentation

8 years agoAdd a test, inspired by @drwells. 2449/head
Wolfgang Bangerth [Mon, 4 Apr 2016 02:43:37 +0000 (21:43 -0500)]
Add a test, inspired by @drwells.

8 years agoMerge pull request #2448 from kronbichler/master
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

8 years agoMerge pull request #2453 from tjhei/stray_typename
Bruno Turcksin [Mon, 4 Apr 2016 13:34:07 +0000 (08:34 -0500)]
Merge pull request #2453 from tjhei/stray_typename

Stray typename

8 years agomore typename 2453/head
Timo Heister [Mon, 4 Apr 2016 13:04:32 +0000 (15:04 +0200)]
more typename

8 years agoremove typename
Timo Heister [Mon, 4 Apr 2016 13:00:01 +0000 (15:00 +0200)]
remove typename

8 years agoremove stray 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

8 years agoAdd memory_consumption() for std_cxx11::array objects.
Wolfgang Bangerth [Sun, 3 Apr 2016 15:05:27 +0000 (10:05 -0500)]
Add memory_consumption() for std_cxx11::array objects.

8 years agoMerge pull request #2451 from masterleinad/fix_exceptions
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

8 years agoFix Exceptions if we are not in namespace dealii 2451/head
Daniel Arndt [Sun, 3 Apr 2016 16:48:41 +0000 (18:48 +0200)]
Fix Exceptions if we are not in namespace dealii

8 years agoMerge pull request #2450 from bangerth/fix-2445
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.

8 years agoFix a failing compilation. 2450/head
Wolfgang Bangerth [Sun, 3 Apr 2016 15:22:32 +0000 (10:22 -0500)]
Fix a failing compilation.

8 years agoMention change 2448/head
Martin Kronbichler [Sun, 3 Apr 2016 11:11:43 +0000 (13:11 +0200)]
Mention change

8 years agoTests for minlevel>0.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:26 +0000 (13:11 +0200)]
Tests for minlevel>0.

8 years agoFix mg transfer for minlevel > 0.
Martin Kronbichler [Sun, 3 Apr 2016 11:11:12 +0000 (13:11 +0200)]
Fix mg transfer for minlevel > 0.

8 years agoMerge pull request #2446 from tjhei/test_console
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

8 years agotests: restore option to print to console with deallog 2446/head
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.

8 years agoFix doxygen markup. 2444/head
Wolfgang Bangerth [Sat, 2 Apr 2016 18:37:45 +0000 (13:37 -0500)]
Fix doxygen markup.

8 years agoIndentation fix
danshapero [Fri, 1 Apr 2016 14:39:22 +0000 (07:39 -0700)]
Indentation fix

8 years agoMerge pull request #2441 from masterleinad/fix_accessor_warning
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

8 years agoFix warning in tria_accessor.cc 2441/head
Daniel Arndt [Fri, 1 Apr 2016 11:55:20 +0000 (13:55 +0200)]
Fix warning in tria_accessor.cc

8 years agoMerge pull request #2395 from masterleinad/periodic_neighbor
Martin Kronbichler [Fri, 1 Apr 2016 06:18:41 +0000 (08:18 +0200)]
Merge pull request #2395 from masterleinad/periodic_neighbor

Periodic neighbors

8 years agoTest of SparseMatrix move ctor checks that ExcInUse is thrown
danshapero [Fri, 1 Apr 2016 03:56:45 +0000 (20:56 -0700)]
Test of SparseMatrix move ctor checks that ExcInUse is thrown

8 years agoSparseMatrix move ctor now moves its parent Subscriptor
danshapero [Fri, 1 Apr 2016 03:56:15 +0000 (20:56 -0700)]
SparseMatrix move ctor now moves its parent Subscriptor

8 years agoAdded move constructor to 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.

8 years agoFix initial lines in test output 2395/head
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.