]> https://gitweb.dealii.org/ - dealii-svn.git/log
dealii-svn.git
14 years agoadd virtual constructor
kanschat [Wed, 22 Sep 2010 21:46:37 +0000 (21:46 +0000)]
add virtual constructor

git-svn-id: https://svn.dealii.org/trunk@22123 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd missing suffix
kanschat [Wed, 22 Sep 2010 21:14:10 +0000 (21:14 +0000)]
add missing suffix

git-svn-id: https://svn.dealii.org/trunk@22122 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoWork a bit on the documentation and state order of indices.
bangerth [Wed, 22 Sep 2010 21:03:21 +0000 (21:03 +0000)]
Work a bit on the documentation and state order of indices.

git-svn-id: https://svn.dealii.org/trunk@22121 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agofix documentation.
heister [Wed, 22 Sep 2010 16:05:32 +0000 (16:05 +0000)]
fix documentation.

git-svn-id: https://svn.dealii.org/trunk@22120 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoUbuntus default /bin/sh can not deal with "{a,b}" in shell commands and could not...
heister [Wed, 22 Sep 2010 12:55:21 +0000 (12:55 +0000)]
Ubuntus default /bin/sh can not deal with "{a,b}" in shell commands and could not generate the doxygen documentation because of that.

git-svn-id: https://svn.dealii.org/trunk@22119 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove questionable statement.
bangerth [Wed, 22 Sep 2010 11:22:50 +0000 (11:22 +0000)]
Remove questionable statement.

git-svn-id: https://svn.dealii.org/trunk@22118 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agochange it back to the previous version
janssen [Wed, 22 Sep 2010 07:58:27 +0000 (07:58 +0000)]
change it back to the previous version

git-svn-id: https://svn.dealii.org/trunk@22117 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoSimplify structure a bit.
bangerth [Wed, 22 Sep 2010 03:47:59 +0000 (03:47 +0000)]
Simplify structure a bit.

git-svn-id: https://svn.dealii.org/trunk@22116 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRename enum according to our usual convention.
bangerth [Wed, 22 Sep 2010 02:16:55 +0000 (02:16 +0000)]
Rename enum according to our usual convention.

git-svn-id: https://svn.dealii.org/trunk@22115 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agofix ignoring block comments
kanschat [Tue, 21 Sep 2010 22:34:33 +0000 (22:34 +0000)]
fix ignoring block comments

git-svn-id: https://svn.dealii.org/trunk@22114 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agofurther steps on the way to include an actual plain program
kanschat [Tue, 21 Sep 2010 22:26:26 +0000 (22:26 +0000)]
further steps on the way to include an actual plain program

git-svn-id: https://svn.dealii.org/trunk@22113 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoCorrect output files, without debug output.
bangerth [Tue, 21 Sep 2010 21:23:37 +0000 (21:23 +0000)]
Correct output files, without debug output.

git-svn-id: https://svn.dealii.org/trunk@22112 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoCast explicitly.
bangerth [Tue, 21 Sep 2010 21:22:03 +0000 (21:22 +0000)]
Cast explicitly.

git-svn-id: https://svn.dealii.org/trunk@22111 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoThe creation of deal.dox needs the bash echo. Since Ubuntu's /bi/sh is only POSIX...
kanschat [Tue, 21 Sep 2010 21:16:54 +0000 (21:16 +0000)]
The creation of deal.dox needs the bash echo. Since Ubuntu's /bi/sh is only POSIX, we need to specify bash

git-svn-id: https://svn.dealii.org/trunk@22110 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoThis was tricky: In this test we use the GnuplotPatch class to produce output for...
bangerth [Tue, 21 Sep 2010 21:09:00 +0000 (21:09 +0000)]
This was tricky: In this test we use the GnuplotPatch class to produce output for each patch. We do so through the WorkStream framework, so we can be sure that only one output operation is happening at the same time, but it's not predictable on which thread this will happen (this doesn't matter, of course -- all we care for is that the Copier operation of the WorkStream class runs only once at any given time). Now, GnuplotPatch directs output to the deallog class. Unfortunately, GnuplotPatch uses a different ostringstream buffer for output on each thread to avoid multiple threads stepping on each others toes writing into the string buffer. The string buffer is only flushed atomically to the actual output stream once we pipe a std::endl into deallog. The problem happens because we set std::precision on deallog from the main thread -- where it is honored if GnuplotPatch::assemble happens to run on the main thread, but if WorkStream schedules GnuplotPatch::assemble on another thread then the deallog class uses a different ostringstream buffer that didn't have the precision set in the same way. The precision then doesn't matter any more once the result is dumped into deallog.get_file_stream() since at that point it is only a bunch of characters, not a number any more. The result is that the output is not predictable and changes in precision from run to run of the program.

The solution to the problem is to not set the precision of the output streams at all and use the default values. The buffers the deallog class uses for other threads then have the same precision as that of the main thread.

git-svn-id: https://svn.dealii.org/trunk@22109 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove sections of plain program from contents
kanschat [Tue, 21 Sep 2010 20:47:04 +0000 (20:47 +0000)]
Remove sections of plain program from contents

git-svn-id: https://svn.dealii.org/trunk@22108 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agodirectory for plain programs
kanschat [Tue, 21 Sep 2010 20:38:24 +0000 (20:38 +0000)]
directory for plain programs

git-svn-id: https://svn.dealii.org/trunk@22107 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoprepare use of doxygen @example
kanschat [Tue, 21 Sep 2010 20:37:02 +0000 (20:37 +0000)]
prepare use of doxygen @example

git-svn-id: https://svn.dealii.org/trunk@22106 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdd solver to group
kanschat [Tue, 21 Sep 2010 19:39:27 +0000 (19:39 +0000)]
Add solver to group

git-svn-id: https://svn.dealii.org/trunk@22105 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoReformat.
bangerth [Tue, 21 Sep 2010 18:30:43 +0000 (18:30 +0000)]
Reformat.

git-svn-id: https://svn.dealii.org/trunk@22104 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agouse the set_precision in the assembling for the output
janssen [Tue, 21 Sep 2010 11:20:35 +0000 (11:20 +0000)]
use the set_precision in the assembling for the output

git-svn-id: https://svn.dealii.org/trunk@22103 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadded a function to set the precision of the output
janssen [Tue, 21 Sep 2010 11:19:41 +0000 (11:19 +0000)]
added a function to set the precision of the output

git-svn-id: https://svn.dealii.org/trunk@22102 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoremoved BAERBEL_MG_TEST
janssen [Tue, 21 Sep 2010 10:07:54 +0000 (10:07 +0000)]
removed BAERBEL_MG_TEST

git-svn-id: https://svn.dealii.org/trunk@22101 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadded documentation, removed function for the standard eigenvalue
janssen [Tue, 21 Sep 2010 10:05:56 +0000 (10:05 +0000)]
added documentation, removed function for the standard eigenvalue
problem

git-svn-id: https://svn.dealii.org/trunk@22100 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdd a sentence.
bangerth [Mon, 20 Sep 2010 23:54:01 +0000 (23:54 +0000)]
Add a sentence.

git-svn-id: https://svn.dealii.org/trunk@22099 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAvoid warning message about hidden virtual function. Remove name of unused argument.
bangerth [Mon, 20 Sep 2010 21:55:25 +0000 (21:55 +0000)]
Avoid warning message about hidden virtual function. Remove name of unused argument.

git-svn-id: https://svn.dealii.org/trunk@22098 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAvoid warning message about hidden virtual function. Remove name of unused argument.
bangerth [Mon, 20 Sep 2010 21:54:39 +0000 (21:54 +0000)]
Avoid warning message about hidden virtual function. Remove name of unused argument.

git-svn-id: https://svn.dealii.org/trunk@22097 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdd one instantiation that we now apparently need.
bangerth [Mon, 20 Sep 2010 21:37:22 +0000 (21:37 +0000)]
Add one instantiation that we now apparently need.

git-svn-id: https://svn.dealii.org/trunk@22096 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoPrevious fix broke compilation on current compilers :-( Do it right this time by...
bangerth [Mon, 20 Sep 2010 21:15:00 +0000 (21:15 +0000)]
Previous fix broke compilation on current compilers :-( Do it right this time by just breaking the function into different parts.

git-svn-id: https://svn.dealii.org/trunk@22095 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoSet properties.
bangerth [Mon, 20 Sep 2010 18:52:35 +0000 (18:52 +0000)]
Set properties.

git-svn-id: https://svn.dealii.org/trunk@22094 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFix typo.
bangerth [Mon, 20 Sep 2010 18:45:09 +0000 (18:45 +0000)]
Fix typo.

git-svn-id: https://svn.dealii.org/trunk@22093 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd additional add_update_flags functions and use in step 39
kanschat [Mon, 20 Sep 2010 17:19:51 +0000 (17:19 +0000)]
add additional add_update_flags functions and use in step 39

git-svn-id: https://svn.dealii.org/trunk@22092 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agointroduce default constructor to initalize update flags
kanschat [Mon, 20 Sep 2010 17:03:11 +0000 (17:03 +0000)]
introduce default constructor to initalize update flags

git-svn-id: https://svn.dealii.org/trunk@22091 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd memory consmuption info to meshworker classes
kanschat [Mon, 20 Sep 2010 16:57:49 +0000 (16:57 +0000)]
add memory consmuption info to meshworker classes

git-svn-id: https://svn.dealii.org/trunk@22090 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd memory consmuption info to meshworker classes
kanschat [Mon, 20 Sep 2010 16:54:45 +0000 (16:54 +0000)]
add memory consmuption info to meshworker classes

git-svn-id: https://svn.dealii.org/trunk@22089 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agotest BDM and RT in 3D
kanschat [Mon, 20 Sep 2010 16:52:48 +0000 (16:52 +0000)]
test BDM and RT in 3D

git-svn-id: https://svn.dealii.org/trunk@22088 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd function to generate a base name usefull to determine the regression test directory
kanschat [Mon, 20 Sep 2010 16:52:02 +0000 (16:52 +0000)]
add function to generate a base name usefull to determine the regression test directory

git-svn-id: https://svn.dealii.org/trunk@22087 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agostraighten out documentation and replace paternalistic advice by actual information
kanschat [Mon, 20 Sep 2010 16:48:20 +0000 (16:48 +0000)]
straighten out documentation and replace paternalistic advice by actual information

git-svn-id: https://svn.dealii.org/trunk@22086 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoinclude a class to be able to interface to ARPACK and some documentation
janssen [Mon, 20 Sep 2010 16:40:45 +0000 (16:40 +0000)]
include a class to be able to interface to ARPACK and some documentation
how to install ARPACK and run it with deal.II

git-svn-id: https://svn.dealii.org/trunk@22085 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoremoved BAERBEL_MG_TEST
janssen [Mon, 20 Sep 2010 16:04:25 +0000 (16:04 +0000)]
removed BAERBEL_MG_TEST

git-svn-id: https://svn.dealii.org/trunk@22084 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoUse Quadrature<1> instead of Quadrature<dim-2>. The reason is that
bangerth [Mon, 20 Sep 2010 15:28:01 +0000 (15:28 +0000)]
Use Quadrature<1> instead of Quadrature<dim-2>. The reason is that
these constructs only appear in code that is executed in 3d but not
all compilers eliminate this dead code when compiling for 1d and 2d,
and so we end up with references to member functions of Quadrature<-1>
which aren't satisfiable in the linking stage.

git-svn-id: https://svn.dealii.org/trunk@22083 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFix apparently wrong (!?) conditional...
bangerth [Mon, 20 Sep 2010 14:30:17 +0000 (14:30 +0000)]
Fix apparently wrong (!?) conditional...

git-svn-id: https://svn.dealii.org/trunk@22082 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFurther simplify most of the Makefiles.
bangerth [Mon, 20 Sep 2010 03:21:38 +0000 (03:21 +0000)]
Further simplify most of the Makefiles.

git-svn-id: https://svn.dealii.org/trunk@22080 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoSimplify Makefile.
bangerth [Sun, 19 Sep 2010 23:58:02 +0000 (23:58 +0000)]
Simplify Makefile.

git-svn-id: https://svn.dealii.org/trunk@22079 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove a directory that has apparently never been used.
bangerth [Sun, 19 Sep 2010 22:33:09 +0000 (22:33 +0000)]
Remove a directory that has apparently never been used.

git-svn-id: https://svn.dealii.org/trunk@22078 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoMore changes like the previous ones: no need to say anything about tests_x if all...
bangerth [Sun, 19 Sep 2010 22:29:25 +0000 (22:29 +0000)]
More changes like the previous ones: no need to say anything about tests_x if all .cc files correspond to one test.

git-svn-id: https://svn.dealii.org/trunk@22077 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoIn those directories in which now all .cc files correspond to tests, simplify the...
bangerth [Sun, 19 Sep 2010 18:55:47 +0000 (18:55 +0000)]
In those directories in which now all .cc files correspond to tests, simplify the Makefile.

git-svn-id: https://svn.dealii.org/trunk@22076 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoIn those directories in which now all .cc files correspond to tests, simplify the...
bangerth [Sun, 19 Sep 2010 18:53:51 +0000 (18:53 +0000)]
In those directories in which now all .cc files correspond to tests, simplify the Makefile.

git-svn-id: https://svn.dealii.org/trunk@22075 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoMove files.
bangerth [Sun, 19 Sep 2010 17:34:40 +0000 (17:34 +0000)]
Move files.

git-svn-id: https://svn.dealii.org/trunk@22074 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd
bangerth [Sun, 19 Sep 2010 17:31:31 +0000 (17:31 +0000)]
add

git-svn-id: https://svn.dealii.org/trunk@22073 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoMove HSL and METIS tests to their own subdirectories.
bangerth [Sun, 19 Sep 2010 17:29:22 +0000 (17:29 +0000)]
Move HSL and METIS tests to their own subdirectories.

git-svn-id: https://svn.dealii.org/trunk@22072 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRename common include files to have suffix .h instead of .h.
bangerth [Sun, 19 Sep 2010 17:28:41 +0000 (17:28 +0000)]
Rename common include files to have suffix .h instead of .h.

git-svn-id: https://svn.dealii.org/trunk@22071 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRename common include files to have suffix .h instead of .h.
bangerth [Sun, 19 Sep 2010 17:26:04 +0000 (17:26 +0000)]
Rename common include files to have suffix .h instead of .h.

git-svn-id: https://svn.dealii.org/trunk@22070 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd
bangerth [Sun, 19 Sep 2010 17:22:36 +0000 (17:22 +0000)]
add

git-svn-id: https://svn.dealii.org/trunk@22069 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd
bangerth [Sun, 19 Sep 2010 17:21:50 +0000 (17:21 +0000)]
add

git-svn-id: https://svn.dealii.org/trunk@22068 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove a test that appears no longer useful.
bangerth [Sun, 19 Sep 2010 17:20:15 +0000 (17:20 +0000)]
Remove a test that appears no longer useful.

git-svn-id: https://svn.dealii.org/trunk@22067 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdd a test that didn't previously run but is still useful.
bangerth [Sun, 19 Sep 2010 17:19:21 +0000 (17:19 +0000)]
Add a test that didn't previously run but is still useful.

git-svn-id: https://svn.dealii.org/trunk@22066 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove a test that can't have worked for many years (close to 10).
bangerth [Sun, 19 Sep 2010 17:04:14 +0000 (17:04 +0000)]
Remove a test that can't have worked for many years (close to 10).

git-svn-id: https://svn.dealii.org/trunk@22065 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRename include file to have .h ending.
bangerth [Sun, 19 Sep 2010 16:59:57 +0000 (16:59 +0000)]
Rename include file to have .h ending.

git-svn-id: https://svn.dealii.org/trunk@22064 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoMove.
bangerth [Sun, 19 Sep 2010 16:56:39 +0000 (16:56 +0000)]
Move.

git-svn-id: https://svn.dealii.org/trunk@22063 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove another such file.
bangerth [Sun, 19 Sep 2010 16:56:02 +0000 (16:56 +0000)]
Remove another such file.

git-svn-id: https://svn.dealii.org/trunk@22062 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove file whose meaning isn't quite clear.
bangerth [Sun, 19 Sep 2010 16:55:01 +0000 (16:55 +0000)]
Remove file whose meaning isn't quite clear.

git-svn-id: https://svn.dealii.org/trunk@22061 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove test that apparently was never finished.
bangerth [Sun, 19 Sep 2010 16:53:49 +0000 (16:53 +0000)]
Remove test that apparently was never finished.

git-svn-id: https://svn.dealii.org/trunk@22060 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAllow determining who wins in case ConstraintMatrix::merge gets conflicting constraints.
bangerth [Sun, 19 Sep 2010 16:23:26 +0000 (16:23 +0000)]
Allow determining who wins in case ConstraintMatrix::merge gets conflicting constraints.

git-svn-id: https://svn.dealii.org/trunk@22059 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove backup file.
bangerth [Sun, 19 Sep 2010 15:10:18 +0000 (15:10 +0000)]
Remove backup file.

git-svn-id: https://svn.dealii.org/trunk@22056 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoNew test.
bangerth [Sun, 19 Sep 2010 14:57:53 +0000 (14:57 +0000)]
New test.

git-svn-id: https://svn.dealii.org/trunk@22054 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoNew test.
bangerth [Sun, 19 Sep 2010 14:56:34 +0000 (14:56 +0000)]
New test.

git-svn-id: https://svn.dealii.org/trunk@22053 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFix typo.
bangerth [Sun, 19 Sep 2010 14:39:48 +0000 (14:39 +0000)]
Fix typo.

git-svn-id: https://svn.dealii.org/trunk@22052 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdjust output.
bangerth [Sun, 19 Sep 2010 13:52:02 +0000 (13:52 +0000)]
Adjust output.

git-svn-id: https://svn.dealii.org/trunk@22047 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove use of QGauss2/QGauss6.
bangerth [Sun, 19 Sep 2010 13:48:40 +0000 (13:48 +0000)]
Remove use of QGauss2/QGauss6.

git-svn-id: https://svn.dealii.org/trunk@22046 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFix name in header.
bangerth [Sun, 19 Sep 2010 03:56:26 +0000 (03:56 +0000)]
Fix name in header.

git-svn-id: https://svn.dealii.org/trunk@22045 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoNew test.
bangerth [Sun, 19 Sep 2010 03:40:08 +0000 (03:40 +0000)]
New test.

git-svn-id: https://svn.dealii.org/trunk@22044 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoSimplify list of include files.
bangerth [Sun, 19 Sep 2010 03:37:05 +0000 (03:37 +0000)]
Simplify list of include files.

git-svn-id: https://svn.dealii.org/trunk@22043 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoSplit test into two that are a bit more atomic.
bangerth [Sun, 19 Sep 2010 00:44:19 +0000 (00:44 +0000)]
Split test into two that are a bit more atomic.

git-svn-id: https://svn.dealii.org/trunk@22042 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove the QGauss2...QGauss7 classes after 6.5 years of deprecation.
bangerth [Sun, 19 Sep 2010 00:36:17 +0000 (00:36 +0000)]
Remove the QGauss2...QGauss7 classes after 6.5 years of deprecation.

git-svn-id: https://svn.dealii.org/trunk@22041 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFinal set of replacements QGaussN -> QGauss(N).
bangerth [Sat, 18 Sep 2010 22:02:49 +0000 (22:02 +0000)]
Final set of replacements QGaussN -> QGauss(N).

git-svn-id: https://svn.dealii.org/trunk@22040 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoFurther replacements of QGaussN -> QGauss(N).
bangerth [Sat, 18 Sep 2010 21:49:58 +0000 (21:49 +0000)]
Further replacements of QGaussN -> QGauss(N).

git-svn-id: https://svn.dealii.org/trunk@22039 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoUpdate results.
bangerth [Sat, 18 Sep 2010 21:41:15 +0000 (21:41 +0000)]
Update results.

git-svn-id: https://svn.dealii.org/trunk@22038 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoUpdate results.
bangerth [Sat, 18 Sep 2010 21:39:15 +0000 (21:39 +0000)]
Update results.

git-svn-id: https://svn.dealii.org/trunk@22037 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoDo not use deprecated classes QGaussN any more.
bangerth [Sat, 18 Sep 2010 10:56:11 +0000 (10:56 +0000)]
Do not use deprecated classes QGaussN any more.

git-svn-id: https://svn.dealii.org/trunk@22036 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoComment out static functions that are currently unused but may be at one point.
bangerth [Sat, 18 Sep 2010 10:47:22 +0000 (10:47 +0000)]
Comment out static functions that are currently unused but may be at one point.

git-svn-id: https://svn.dealii.org/trunk@22035 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoDo not use deprecated class QGauss4.
bangerth [Sat, 18 Sep 2010 10:46:46 +0000 (10:46 +0000)]
Do not use deprecated class QGauss4.

git-svn-id: https://svn.dealii.org/trunk@22034 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd documentation of parameter
kanschat [Fri, 17 Sep 2010 21:49:34 +0000 (21:49 +0000)]
add documentation of parameter

git-svn-id: https://svn.dealii.org/trunk@22033 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdd.
bangerth [Fri, 17 Sep 2010 20:33:48 +0000 (20:33 +0000)]
Add.

git-svn-id: https://svn.dealii.org/trunk@22032 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove outdated output files.
bangerth [Fri, 17 Sep 2010 20:30:21 +0000 (20:30 +0000)]
Remove outdated output files.

git-svn-id: https://svn.dealii.org/trunk@22031 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove outdated output files.
bangerth [Fri, 17 Sep 2010 20:29:52 +0000 (20:29 +0000)]
Remove outdated output files.

git-svn-id: https://svn.dealii.org/trunk@22030 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoExplicitly cast to the type we want.
bangerth [Fri, 17 Sep 2010 20:11:21 +0000 (20:11 +0000)]
Explicitly cast to the type we want.

git-svn-id: https://svn.dealii.org/trunk@22029 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoNow that we run MeshWorker in parallel, we can't generate output in the assembly...
bangerth [Fri, 17 Sep 2010 19:53:47 +0000 (19:53 +0000)]
Now that we run MeshWorker in parallel, we can't generate output in the assembly functions anymore because it will come out in a random order.

git-svn-id: https://svn.dealii.org/trunk@22028 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdjust to Andrew's fix in r21902.
bangerth [Fri, 17 Sep 2010 19:48:23 +0000 (19:48 +0000)]
Adjust to Andrew's fix in r21902.

git-svn-id: https://svn.dealii.org/trunk@22027 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdjust output.
bangerth [Fri, 17 Sep 2010 19:46:35 +0000 (19:46 +0000)]
Adjust output.

git-svn-id: https://svn.dealii.org/trunk@22026 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoAdjust polynomial order numbering.
bangerth [Fri, 17 Sep 2010 19:43:47 +0000 (19:43 +0000)]
Adjust polynomial order numbering.

git-svn-id: https://svn.dealii.org/trunk@22025 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoUpdate.
bangerth [Fri, 17 Sep 2010 19:31:40 +0000 (19:31 +0000)]
Update.

git-svn-id: https://svn.dealii.org/trunk@22024 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd missing functions
kanschat [Fri, 17 Sep 2010 18:59:24 +0000 (18:59 +0000)]
add missing functions

git-svn-id: https://svn.dealii.org/trunk@22023 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoadd documentation
kanschat [Fri, 17 Sep 2010 18:52:52 +0000 (18:52 +0000)]
add documentation

git-svn-id: https://svn.dealii.org/trunk@22022 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoIndent stuff.
bangerth [Fri, 17 Sep 2010 18:43:01 +0000 (18:43 +0000)]
Indent stuff.

git-svn-id: https://svn.dealii.org/trunk@22021 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoRemove line no longer needed.
bangerth [Fri, 17 Sep 2010 17:24:38 +0000 (17:24 +0000)]
Remove line no longer needed.

git-svn-id: https://svn.dealii.org/trunk@22020 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agotest for primitivity and test new elements
kanschat [Fri, 17 Sep 2010 17:08:00 +0000 (17:08 +0000)]
test for primitivity and test new elements

git-svn-id: https://svn.dealii.org/trunk@22019 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agonew vector valued DG elements
kanschat [Fri, 17 Sep 2010 17:07:25 +0000 (17:07 +0000)]
new vector valued DG elements

git-svn-id: https://svn.dealii.org/trunk@22018 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agomove primitivity to FiniteElementData
kanschat [Fri, 17 Sep 2010 16:21:31 +0000 (16:21 +0000)]
move primitivity to FiniteElementData

git-svn-id: https://svn.dealii.org/trunk@22017 0785d39b-7218-0410-832d-ea1e28bc413d

14 years agoExplicitly cast to the type we want.
bangerth [Fri, 17 Sep 2010 16:01:33 +0000 (16:01 +0000)]
Explicitly cast to the type we want.

git-svn-id: https://svn.dealii.org/trunk@22016 0785d39b-7218-0410-832d-ea1e28bc413d


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.