+0 0 0 0 0.9 0.1 0 0 0 0 0 0
+0.5 0 -4.42931e-27 0 0.9 0.1 0 0 0 0 0 0
+
+0 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+
+0.5 0 -4.42931e-27 0 0.9 0.1 0 0 0 0 0 0
+1 0 0 0 0.9 0.1 0 0 0 0 0 0
+
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+1 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+
+0 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+0 1 0 0 -5.3257e-11 0.1 0 1 2 0 1 2
+0.5 1 -5.39777e-27 0 5.3257e-11 0.1 0 1 2 0 1 2
+
+
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+1 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+0.5 1 -5.39777e-27 0 5.3257e-11 0.1 0 1 2 0 1 2
+1 1 0 0 -5.3257e-11 0.1 0 1 2 0 1 2
+
+
diff --git a/tests/multiple_prescribed_fields/statistics b/tests/multiple_prescribed_fields/statistics
new file mode 100644
index 00000000000..9e58a680ea8
--- /dev/null
+++ b/tests/multiple_prescribed_fields/statistics
@@ -0,0 +1,25 @@
+# 1: Time step number
+# 2: Time (seconds)
+# 3: Time step size (seconds)
+# 4: Number of mesh cells
+# 5: Number of Stokes degrees of freedom
+# 6: Number of temperature degrees of freedom
+# 7: Number of degrees of freedom for all compositions
+# 8: Iterations for temperature solver
+# 9: Iterations for composition solver 1
+# 10: Iterations for composition solver 2
+# 11: Iterations for composition solver 3
+# 12: Iterations for Stokes solver
+# 13: Velocity iterations in Stokes preconditioner
+# 14: Schur complement iterations in Stokes preconditioner
+# 15: Visualization file name
+# 16: Minimal value for composition prescribed_1
+# 17: Maximal value for composition prescribed_1
+# 18: Global mass for composition prescribed_1
+# 19: Minimal value for composition prescribed_2
+# 20: Maximal value for composition prescribed_2
+# 21: Global mass for composition prescribed_2
+# 22: Minimal value for composition prescribed_3
+# 23: Maximal value for composition prescribed_3
+# 24: Global mass for composition prescribed_3
+0 0.000000000000e+00 0.000000000000e+00 4 59 25 75 0 4294967294 4294967294 4294967294 5 7 7 output-multiple_prescribed_fields/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00 5.00000000e-01 0.00000000e+00 2.00000000e+00 1.00000000e+00
diff --git a/tests/multiple_prescribed_fields_dc.cc b/tests/multiple_prescribed_fields_dc.cc
new file mode 100644
index 00000000000..4aa67f62cff
--- /dev/null
+++ b/tests/multiple_prescribed_fields_dc.cc
@@ -0,0 +1,95 @@
+/*
+ Copyright (C) 2022 - 2024 by the authors of the ASPECT code.
+
+ This file is part of ASPECT.
+
+ ASPECT is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ ASPECT is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with ASPECT; see the file LICENSE. If not see
+ .
+*/
+
+#include
+#include
+
+namespace aspect
+{
+ namespace MaterialModel
+ {
+ using namespace dealii;
+
+ template
+ class PrescribedFieldsMaterial : public MaterialModel::Simple
+ {
+ public:
+
+ void evaluate(const MaterialModel::MaterialModelInputs &in,
+ MaterialModel::MaterialModelOutputs &out) const override;
+
+ void
+ create_additional_named_outputs (MaterialModel::MaterialModelOutputs &out) const override;
+ };
+
+ }
+}
+
+namespace aspect
+{
+ namespace MaterialModel
+ {
+
+ template
+ void
+ PrescribedFieldsMaterial::
+ evaluate(const MaterialModel::MaterialModelInputs &in,
+ MaterialModel::MaterialModelOutputs &out) const
+ {
+ Simple::evaluate(in, out);
+
+ // set up variable to interpolate prescribed field outputs onto compositional fields
+ PrescribedFieldOutputs *prescribed_field_out = out.template get_additional_output>();
+
+ if (prescribed_field_out != nullptr)
+ for (unsigned int i=0; i < in.n_evaluation_points(); ++i)
+ {
+ const double y = in.position[i](1);
+ for (unsigned int j=0; jn_compositional_fields(); ++j)
+ prescribed_field_out->prescribed_field_outputs[i][j] = y*j;
+ }
+ }
+
+
+ template
+ void
+ PrescribedFieldsMaterial::create_additional_named_outputs (MaterialModel::MaterialModelOutputs &out) const
+ {
+ if (out.template get_additional_output>() == nullptr)
+ {
+ const unsigned int n_points = out.n_evaluation_points();
+ out.additional_outputs.push_back(
+ std::make_unique> (n_points,this->n_compositional_fields()));
+ }
+ }
+ }
+}
+
+// explicit instantiations
+namespace aspect
+{
+ namespace MaterialModel
+ {
+ ASPECT_REGISTER_MATERIAL_MODEL(PrescribedFieldsMaterial,
+ "prescribed fields material",
+ "A simple material model that is like the "
+ "'Simple' model, but creates multiple prescribed field outputs.")
+ }
+}
diff --git a/tests/multiple_prescribed_fields_dc.prm b/tests/multiple_prescribed_fields_dc.prm
new file mode 100644
index 00000000000..2150ba83011
--- /dev/null
+++ b/tests/multiple_prescribed_fields_dc.prm
@@ -0,0 +1,88 @@
+# A testcase that demonstrates the named additional outputs postprocessor for multiple
+# named outputs. The test is based on prescribed_field_with_diffusion only
+# with more than one additional output.
+
+set Dimension = 2
+set End time = 0
+set Start time = 0
+set Adiabatic surface temperature = 0
+set Surface pressure = 0
+set Use years in output instead of seconds = false
+
+subsection Gravity model
+ set Model name = vertical
+
+ subsection Vertical
+ set Magnitude = 1.0
+ end
+end
+
+subsection Geometry model
+ set Model name = box
+
+ subsection Box
+ set X extent = 1
+ set Y extent = 1
+ end
+end
+
+subsection Discretization
+ set Composition polynomial degree = 2,2,3
+ set Use discontinuous composition discretization = false, true, true
+end
+
+subsection Compositional fields
+ set Number of fields = 3
+ set Names of fields = prescribed_1, prescribed_2, prescribed_3
+ set Compositional field methods = prescribed field, prescribed field, prescribed field
+end
+
+subsection Initial temperature model
+ set Model name = function
+
+ subsection Function
+ set Function expression = 0.1
+ end
+end
+
+subsection Initial composition model
+ set Model name = function
+
+ subsection Function
+ set Function expression = 0.0; 0.2; 0.3
+ end
+end
+
+subsection Material model
+ set Model name = prescribed fields material
+
+ subsection Simple model
+ set Reference density = 1
+ set Reference specific heat = 1
+ set Reference temperature = 0
+ set Thermal conductivity = 1
+ set Thermal expansion coefficient = 1
+ set Viscosity = 1
+ end
+end
+
+subsection Mesh refinement
+ set Initial adaptive refinement = 0
+ set Initial global refinement = 1
+end
+
+subsection Boundary velocity model
+ set Tangential velocity boundary indicators = 0, 1, 2, 3
+end
+
+subsection Postprocess
+ set List of postprocessors = visualization, composition statistics
+
+ subsection Visualization
+ set Interpolate output = false
+ set List of output variables = named additional outputs
+ set Number of grouped files = 0
+ set Output format = gnuplot
+ set Time between graphical output = 0
+ end
+end
diff --git a/tests/multiple_prescribed_fields_dc/screen-output b/tests/multiple_prescribed_fields_dc/screen-output
new file mode 100644
index 00000000000..b0e8a33b14d
--- /dev/null
+++ b/tests/multiple_prescribed_fields_dc/screen-output
@@ -0,0 +1,19 @@
+
+Loading shared library <./libmultiple_prescribed_fields_dc.debug.so>
+
+Number of active cells: 4 (on 2 levels)
+Number of degrees of freedom: 209 (50+9+25+25+36+64)
+
+*** Timestep 0: t=0 seconds, dt=0 seconds
+ Solving temperature system... 0 iterations.
+ Copying properties into prescribed compositional fields... done.
+ Solving Stokes system (GMG)... 6+0 iterations.
+
+ Postprocessing:
+ Writing graphical output: output-multiple_prescribed_fields_dc/solution/solution-00000
+ Compositions min/max/mass: 0/0/0 // 0/1/0.5 // 0/2/1
+
+Termination requested by criterion: end time
+
+
+
diff --git a/tests/multiple_prescribed_fields_dc/solution/solution-00000.0000.gnuplot b/tests/multiple_prescribed_fields_dc/solution/solution-00000.0000.gnuplot
new file mode 100644
index 00000000000..49ed29ce85b
--- /dev/null
+++ b/tests/multiple_prescribed_fields_dc/solution/solution-00000.0000.gnuplot
@@ -0,0 +1,35 @@
+# This file was generated by the deal.II library.
+
+
+#
+# For a description of the GNUPLOT format see the GNUPLOT manual.
+#
+#
+0 0 0 0 0.9 0.1 0 0 0 0 0 0
+0.5 0 -4.42931e-27 0 0.9 0.1 0 0 0 0 0 0
+
+0 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+
+0.5 0 -4.42931e-27 0 0.9 0.1 0 0 0 0 0 0
+1 0 0 0 0.9 0.1 0 0 0 0 0 0
+
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+1 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+
+0 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+0 1 0 0 -5.3257e-11 0.1 0 1 2 0 1 2
+0.5 1 -5.39777e-27 0 5.3257e-11 0.1 0 1 2 0 1 2
+
+
+0.5 0.5 5.45949e-28 -3.03919e-11 0.45 0.1 0 0.5 1 0 0.5 1
+1 0.5 0 2.208e-11 0.45 0.1 0 0.5 1 0 0.5 1
+
+0.5 1 -5.39777e-27 0 5.3257e-11 0.1 0 1 2 0 1 2
+1 1 0 0 -5.3257e-11 0.1 0 1 2 0 1 2
+
+
diff --git a/tests/multiple_prescribed_fields_dc/statistics b/tests/multiple_prescribed_fields_dc/statistics
new file mode 100644
index 00000000000..bb50c08ae8f
--- /dev/null
+++ b/tests/multiple_prescribed_fields_dc/statistics
@@ -0,0 +1,25 @@
+# 1: Time step number
+# 2: Time (seconds)
+# 3: Time step size (seconds)
+# 4: Number of mesh cells
+# 5: Number of Stokes degrees of freedom
+# 6: Number of temperature degrees of freedom
+# 7: Number of degrees of freedom for all compositions
+# 8: Iterations for temperature solver
+# 9: Iterations for composition solver 1
+# 10: Iterations for composition solver 2
+# 11: Iterations for composition solver 3
+# 12: Iterations for Stokes solver
+# 13: Velocity iterations in Stokes preconditioner
+# 14: Schur complement iterations in Stokes preconditioner
+# 15: Visualization file name
+# 16: Minimal value for composition prescribed_1
+# 17: Maximal value for composition prescribed_1
+# 18: Global mass for composition prescribed_1
+# 19: Minimal value for composition prescribed_2
+# 20: Maximal value for composition prescribed_2
+# 21: Global mass for composition prescribed_2
+# 22: Minimal value for composition prescribed_3
+# 23: Maximal value for composition prescribed_3
+# 24: Global mass for composition prescribed_3
+0 0.000000000000e+00 0.000000000000e+00 4 59 25 75 0 4294967295 4294967295 4294967295 5 7 7 output-multiple_prescribed_fields_dc/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00 5.00000000e-01 0.00000000e+00 2.00000000e+00 1.00000000e+00
diff --git a/tests/steinberger_projected_density/screen-output b/tests/steinberger_projected_density/screen-output
index 6bb5c2b8853..7ecc08644e9 100644
--- a/tests/steinberger_projected_density/screen-output
+++ b/tests/steinberger_projected_density/screen-output
@@ -5,8 +5,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
*** Timestep 0: t=0 years, dt=0 years
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 15+0 iterations.
Postprocessing:
@@ -19,8 +19,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
*** Timestep 1: t=100000 years, dt=100000 years
Solving temperature system... 13 iterations.
Solving composition system ... 11 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 11 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 13+0 iterations.
Postprocessing:
diff --git a/tests/steinberger_projected_density/statistics b/tests/steinberger_projected_density/statistics
index 35dc81177cc..677d83d8110 100644
--- a/tests/steinberger_projected_density/statistics
+++ b/tests/steinberger_projected_density/statistics
@@ -7,8 +7,8 @@
# 7: Number of degrees of freedom for all compositions
# 8: Iterations for temperature solver
# 9: Iterations for composition solver 1
-# 10: Iterations for composition solver 2
-# 11: Iterations for composition solver 3
+# 10: Iterations for composition solver 3
+# 11: Iterations for composition solver 2
# 12: Iterations for Stokes solver
# 13: Velocity iterations in Stokes preconditioner
# 14: Schur complement iterations in Stokes preconditioner
@@ -23,5 +23,5 @@
# 23: Outward heat flux through boundary with indicator 1 ("top") (W)
# 24: Outward heat flux through boundary with indicator 2 ("left") (W)
# 25: Outward heat flux through boundary with indicator 3 ("right") (W)
-0 0.000000000000e+00 0.000000000000e+00 192 1891 833 2499 0 0 4294967295 0 14 16 16 output-steinberger_projected_density/solution/solution-00000 5.81342027e-01 1.11483000e+00 2.73000000e+02 2.43678322e+03 4.25000000e+03 5.44074231e-01 4.85706828e+05 -4.25073533e+06 0.00000000e+00 0.00000000e+00
-1 1.000000000000e+05 1.000000000000e+05 192 1891 833 2499 13 11 4294967295 11 12 14 14 output-steinberger_projected_density/solution/solution-00001 5.78335271e-01 1.11468431e+00 2.73000000e+02 2.43540495e+03 4.25000000e+03 5.43727671e-01 -2.81356102e+06 -1.21533631e+06 0.00000000e+00 0.00000000e+00
+0 0.000000000000e+00 0.000000000000e+00 192 1891 833 2499 0 0 0 4294967295 14 16 16 output-steinberger_projected_density/solution/solution-00000 5.81342027e-01 1.11483000e+00 2.73000000e+02 2.43678322e+03 4.25000000e+03 5.44074231e-01 4.85706828e+05 -4.25073533e+06 0.00000000e+00 0.00000000e+00
+1 1.000000000000e+05 1.000000000000e+05 192 1891 833 2499 13 11 11 4294967295 12 14 14 output-steinberger_projected_density/solution/solution-00001 5.78335271e-01 1.11468431e+00 2.73000000e+02 2.43540495e+03 4.25000000e+03 5.43727671e-01 -2.81356102e+06 -1.21533631e+06 0.00000000e+00 0.00000000e+00
diff --git a/tests/steinberger_projected_density_dcPicard/screen-output b/tests/steinberger_projected_density_dcPicard/screen-output
index f485c874bf1..b0d33000cef 100644
--- a/tests/steinberger_projected_density_dcPicard/screen-output
+++ b/tests/steinberger_projected_density_dcPicard/screen-output
@@ -5,8 +5,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
*** Timestep 0: t=0 years, dt=0 years
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Initial Newton Stokes residual = 1.22791e+14, v = 1.22791e+14, p = 0
Solving Stokes system (GMG)... 15+0 iterations.
@@ -16,8 +16,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 11+0 iterations.
Newton system information: Norm of the rhs: 2.23856e+12, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.71633e-16, 1.61486e-16, 0, 1.56133e-16, 0.0182306
@@ -25,8 +25,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 11+0 iterations.
Newton system information: Norm of the rhs: 6.56739e+10, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.71633e-16, 1.61486e-16, 0, 1.56133e-16, 0.000534843
@@ -34,8 +34,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 11+0 iterations.
Newton system information: Norm of the rhs: 1.62309e+09, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.71633e-16, 1.61486e-16, 0, 1.56133e-16, 1.32183e-05
@@ -43,8 +43,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 0 iterations.
Solving composition system ... 0 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 0 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 11+0 iterations.
Newton system information: Norm of the rhs: 4.47762e+07, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.71633e-16, 1.61486e-16, 0, 1.56133e-16, 3.64653e-07
@@ -61,8 +61,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
*** Timestep 1: t=100000 years, dt=100000 years
Solving temperature system... 13 iterations.
Solving composition system ... 11 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 11 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Initial Newton Stokes residual = 8.39912e+13, v = 8.31745e+13, p = 1.16846e+13
Solving Stokes system (GMG)... 13+0 iterations.
@@ -72,8 +72,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 11 iterations.
Solving composition system ... 9 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 9 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 13+0 iterations.
Newton system information: Norm of the rhs: 2.55278e+11, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00012418, 0.000414973, 0, 0.000193229, 0.00303934
@@ -81,8 +81,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 10 iterations.
Solving composition system ... 8 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 8 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 13+0 iterations.
Newton system information: Norm of the rhs: 2.2233e+10, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.8685e-06, 3.11445e-05, 0, 1.43921e-05, 0.000264707
@@ -90,8 +90,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 8 iterations.
Solving composition system ... 7 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 7 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 12+0 iterations.
Newton system information: Norm of the rhs: 1.00197e+09, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.11361e-07, 2.60566e-06, 0, 1.38988e-06, 1.19295e-05
@@ -99,8 +99,8 @@ Number of degrees of freedom: 5,223 (1,666+225+833+833+833+833)
Solving temperature system... 7 iterations.
Solving composition system ... 6 iterations.
- Copying properties into prescribed compositional field density_field... done.
Solving another_field system ... 5 iterations.
+ Copying properties into prescribed compositional field density_field... done.
Solving Stokes system (GMG)... 13+0 iterations.
Newton system information: Norm of the rhs: 9.33525e+07, Derivative scaling factor: 0
Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.31558e-08, 1.25138e-07, 0, 8.13074e-08, 1.11146e-06
diff --git a/tests/steinberger_projected_density_dcPicard/statistics b/tests/steinberger_projected_density_dcPicard/statistics
index 47b5ef6c887..93ef215908c 100644
--- a/tests/steinberger_projected_density_dcPicard/statistics
+++ b/tests/steinberger_projected_density_dcPicard/statistics
@@ -8,8 +8,8 @@
# 8: Number of nonlinear iterations
# 9: Iterations for temperature solver
# 10: Iterations for composition solver 1
-# 11: Iterations for composition solver 2
-# 12: Iterations for composition solver 3
+# 11: Iterations for composition solver 3
+# 12: Iterations for composition solver 2
# 13: Iterations for Stokes solver
# 14: Velocity iterations in Stokes preconditioner
# 15: Schur complement iterations in Stokes preconditioner
@@ -24,5 +24,5 @@
# 24: Outward heat flux through boundary with indicator 1 ("top") (W)
# 25: Outward heat flux through boundary with indicator 2 ("left") (W)
# 26: Outward heat flux through boundary with indicator 3 ("right") (W)
-0 0.000000000000e+00 0.000000000000e+00 192 1891 833 2499 5 0 0 4294967291 0 54 64 64 output-steinberger_projected_density_dcPicard/solution/solution-00000 5.78314979e-01 1.09945267e+00 2.73000000e+02 2.43678322e+03 4.25000000e+03 5.44074231e-01 4.99327014e+05 -4.27418614e+06 0.00000000e+00 0.00000000e+00
-1 1.000000000000e+05 1.000000000000e+05 192 1891 833 2499 5 49 41 4294967291 40 59 69 69 output-steinberger_projected_density_dcPicard/solution/solution-00001 5.77687184e-01 1.11532571e+00 2.73000000e+02 2.43583623e+03 4.25000000e+03 5.43836114e-01 -2.71821909e+06 -1.13647007e+06 0.00000000e+00 0.00000000e+00
+0 0.000000000000e+00 0.000000000000e+00 192 1891 833 2499 5 0 0 0 4294967291 54 64 64 output-steinberger_projected_density_dcPicard/solution/solution-00000 5.78314979e-01 1.09945267e+00 2.73000000e+02 2.43678322e+03 4.25000000e+03 5.44074231e-01 4.99327014e+05 -4.27418614e+06 0.00000000e+00 0.00000000e+00
+1 1.000000000000e+05 1.000000000000e+05 192 1891 833 2499 5 49 41 40 4294967291 59 69 69 output-steinberger_projected_density_dcPicard/solution/solution-00001 5.77687184e-01 1.11532571e+00 2.73000000e+02 2.43583623e+03 4.25000000e+03 5.43836114e-01 -2.71821909e+06 -1.13647007e+06 0.00000000e+00 0.00000000e+00