From 2d6f3dab567c94ba45ccf31c6fd71c73056c86a5 Mon Sep 17 00:00:00 2001 From: frohne Date: Wed, 31 Jul 2013 14:31:11 +0000 Subject: [PATCH] some prm-files git-svn-id: https://svn.dealii.org/trunk@30196 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-42/p1_adaptive.prm | 25 ++++++++++++++++++++++++ deal.II/examples/step-42/p1_global.prm | 25 ++++++++++++++++++++++++ deal.II/examples/step-42/p2_adaptive.prm | 25 ++++++++++++++++++++++++ deal.II/examples/step-42/p2_global.prm | 25 ++++++++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 deal.II/examples/step-42/p1_adaptive.prm create mode 100644 deal.II/examples/step-42/p1_global.prm create mode 100644 deal.II/examples/step-42/p2_adaptive.prm create mode 100644 deal.II/examples/step-42/p2_global.prm diff --git a/deal.II/examples/step-42/p1_adaptive.prm b/deal.II/examples/step-42/p1_adaptive.prm new file mode 100644 index 0000000000..dd5f63c008 --- /dev/null +++ b/deal.II/examples/step-42/p1_adaptive.prm @@ -0,0 +1,25 @@ +# Listing of Parameters +# --------------------- + +# polynomial degree of the FE_Q finite element space, typically 1 or 2 +set polynomial degree = 1 + +# number of initial global refinements before the first computation +set number of initial refinements = 3 + +# number of adaptive cycles to run +set number of cycles = 12 + +# refinement strategy for each cycle: +# global: one global refinement +# percentage: fixed percentage gets refined using kelly +# fix dofs: tries to achieve 2^initial_refinement*300 dofs after cycle 1 (only +# use 2 cycles!). Changes the coarse mesh! +set refinement strategy = percentage + +# obstacle file to read, leave empty to use a sphere or 'obstacle_file.pbm' +set obstacle filename = + +# directory to put output files (graphical output and benchmark statistics, +# leave empty to put into current directory +set output directory = p1adaptive diff --git a/deal.II/examples/step-42/p1_global.prm b/deal.II/examples/step-42/p1_global.prm new file mode 100644 index 0000000000..ead72fb52e --- /dev/null +++ b/deal.II/examples/step-42/p1_global.prm @@ -0,0 +1,25 @@ +# Listing of Parameters +# --------------------- + +# polynomial degree of the FE_Q finite element space, typically 1 or 2 +set polynomial degree = 1 + +# number of initial global refinements before the first computation +set number of initial refinements = 3 + +# number of adaptive cycles to run +set number of cycles = 7 + +# refinement strategy for each cycle: +# global: one global refinement +# percentage: fixed percentage gets refined using kelly +# fix dofs: tries to achieve 2^initial_refinement*300 dofs after cycle 1 (only +# use 2 cycles!). Changes the coarse mesh! +set refinement strategy = global + +# obstacle file to read, leave empty to use a sphere or 'obstacle_file.pbm' +set obstacle filename = + +# directory to put output files (graphical output and benchmark statistics, +# leave empty to put into current directory +set output directory = p1global diff --git a/deal.II/examples/step-42/p2_adaptive.prm b/deal.II/examples/step-42/p2_adaptive.prm new file mode 100644 index 0000000000..3c06265efd --- /dev/null +++ b/deal.II/examples/step-42/p2_adaptive.prm @@ -0,0 +1,25 @@ +# Listing of Parameters +# --------------------- + +# polynomial degree of the FE_Q finite element space, typically 1 or 2 +set polynomial degree = 2 + +# number of initial global refinements before the first computation +set number of initial refinements = 2 + +# number of adaptive cycles to run +set number of cycles = 11 + +# refinement strategy for each cycle: +# global: one global refinement +# percentage: fixed percentage gets refined using kelly +# fix dofs: tries to achieve 2^initial_refinement*300 dofs after cycle 1 (only +# use 2 cycles!). Changes the coarse mesh! +set refinement strategy = percentage + +# obstacle file to read, leave empty to use a sphere or 'obstacle_file.pbm' +set obstacle filename = + +# directory to put output files (graphical output and benchmark statistics, +# leave empty to put into current directory +set output directory = p2adaptive diff --git a/deal.II/examples/step-42/p2_global.prm b/deal.II/examples/step-42/p2_global.prm new file mode 100644 index 0000000000..f721e417e3 --- /dev/null +++ b/deal.II/examples/step-42/p2_global.prm @@ -0,0 +1,25 @@ +# Listing of Parameters +# --------------------- + +# polynomial degree of the FE_Q finite element space, typically 1 or 2 +set polynomial degree = 2 + +# number of initial global refinements before the first computation +set number of initial refinements = 3 + +# number of adaptive cycles to run +set number of cycles = 6 + +# refinement strategy for each cycle: +# global: one global refinement +# percentage: fixed percentage gets refined using kelly +# fix dofs: tries to achieve 2^initial_refinement*300 dofs after cycle 1 (only +# use 2 cycles!). Changes the coarse mesh! +set refinement strategy = global + +# obstacle file to read, leave empty to use a sphere or 'obstacle_file.pbm' +set obstacle filename = + +# directory to put output files (graphical output and benchmark statistics, +# leave empty to put into current directory +set output directory = p2global -- 2.39.5