From: salgado Date: Tue, 29 Sep 2009 23:33:17 +0000 (+0000) Subject: FINAL! X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b24c9672217d3ce4750e7614d706589390239b2d;p=dealii-svn.git FINAL! git-svn-id: https://svn.dealii.org/trunk@19609 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-35/doc/intro.dox b/deal.II/examples/step-35/doc/intro.dox index c32300af7b..35559d14db 100644 --- a/deal.II/examples/step-35/doc/intro.dox +++ b/deal.II/examples/step-35/doc/intro.dox @@ -162,7 +162,7 @@ One of the advantages of this formulation is that it fully decouples the compone they all share the same system matrix. This can be exploited in the program. However, given the nonstandard boundary conditions, to be able to take them into account we need to use -the following identity +the following %identity @f[ \Delta u = \nabla\nabla\cdot u - \nabla\times\nabla\times u, @f] diff --git a/deal.II/examples/step-35/doc/visit0001.png b/deal.II/examples/step-35/doc/visit0001.png deleted file mode 100644 index adc9bf22dc..0000000000 Binary files a/deal.II/examples/step-35/doc/visit0001.png and /dev/null differ diff --git a/deal.II/examples/step-35/doc/visit0002.png b/deal.II/examples/step-35/doc/visit0002.png deleted file mode 100644 index 67f1fdf0b0..0000000000 Binary files a/deal.II/examples/step-35/doc/visit0002.png and /dev/null differ diff --git a/deal.II/examples/step-35/doc/visit0003.png b/deal.II/examples/step-35/doc/visit0003.png deleted file mode 100644 index c97ee7db92..0000000000 Binary files a/deal.II/examples/step-35/doc/visit0003.png and /dev/null differ diff --git a/deal.II/examples/step-35/doc/visit0004.png b/deal.II/examples/step-35/doc/visit0004.png deleted file mode 100644 index 1eb1e9fbdd..0000000000 Binary files a/deal.II/examples/step-35/doc/visit0004.png and /dev/null differ diff --git a/deal.II/examples/step-35/parameter-file.prm b/deal.II/examples/step-35/parameter-file.prm index 600a78c2d8..4795e61d14 100644 --- a/deal.II/examples/step-35/parameter-file.prm +++ b/deal.II/examples/step-35/parameter-file.prm @@ -7,7 +7,7 @@ subsection Physical data # The initial and final time, and the Reynolds number set initial_time = 0. set final_time = 10. - set Reynolds = 1e3 + set Reynolds = 100 end subsection Time step data @@ -28,15 +28,15 @@ subsection Data solve velocity # In this section we declare the parameters that are going to control the solution process # for the velocity. set max_iterations = 1000 # maximal number of iterations that GMRES must make - set eps = 1e-6 # stopping criterion + set eps = 1e-8 # stopping criterion set Krylov_size = 30 # size of the Krylov subspace to be used in GMRES - set off_diagonals = 60 # number of off diagonals that ILU must compute - set diag_strength = 0.01 # diagonal strengthening value + set off_diagonals = 70 # number of off diagonals that ILU must compute + set diag_strength = 0.1 # diagonal strengthening value set update_prec = 10 # this number indicates how often the preconditioner must be updated end #The output frequency -set output = 5 +set output = 50 #Finally we set the verbosity level -set verbose = true \ No newline at end of file +set verbose = false diff --git a/deal.II/examples/step-35/step-35.cc b/deal.II/examples/step-35/step-35.cc index 73885c6248..d27e397a88 100644 --- a/deal.II/examples/step-35/step-35.cc +++ b/deal.II/examples/step-35/step-35.cc @@ -596,7 +596,7 @@ void NavierStokesProjection::Create_Triangulation (const unsigned int n_of_ GridIn grid_in; grid_in.attach_triangulation (triangulation); - std::string filename = "nsbench2.inp"; + std::string filename = "../nsbench2.inp"; std::ifstream file (filename.c_str()); Assert (file, ExcFileNotOpen (filename.c_str())); grid_in.read_ucd (file); @@ -1206,7 +1206,7 @@ int main() try { RunTimeParameters::Data_Storage data; - data.read_data ("parameter-file.prm"); + data.read_data ("../parameter-file.prm"); deallog.depth_console (data.verbose ? 2 : 0); NavierStokesProjection<2> test (data); test.run (data.verbose, data.output);