File tree 3 files changed +2
-11
lines changed
postprocess/visualization
prescribed_stokes_solution
3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -67,12 +67,6 @@ namespace aspect
67
67
const double temperature = uh[q][this ->introspection ().component_indices .temperature ];
68
68
69
69
const SymmetricTensor<2 ,dim> strain_rate = symmetrize (grad_u);
70
- const SymmetricTensor<2 ,dim> compressible_strain_rate
71
- = (this ->get_material_model ().is_compressible ()
72
- ?
73
- strain_rate - 1 ./3 * trace (strain_rate) * unit_symmetric_tensor<dim>()
74
- :
75
- strain_rate);
76
70
77
71
std::vector<double > composition (this ->n_compositional_fields ());
78
72
for (unsigned int c=0 ; c<this ->n_compositional_fields (); ++c)
Original file line number Diff line number Diff line change @@ -40,13 +40,13 @@ namespace aspect
40
40
template <int dim>
41
41
void
42
42
Interface<dim>::
43
- declare_parameters (dealii::ParameterHandler &prm)
43
+ declare_parameters (dealii::ParameterHandler &/* prm*/ )
44
44
{}
45
45
46
46
47
47
template <int dim>
48
48
void
49
- Interface<dim>::parse_parameters (dealii::ParameterHandler &prm)
49
+ Interface<dim>::parse_parameters (dealii::ParameterHandler &/* prm*/ )
50
50
{}
51
51
52
52
Original file line number Diff line number Diff line change @@ -791,9 +791,6 @@ namespace aspect
791
791
Assert (scratch.grad_phi_field .size () == advection_dofs_per_cell, ExcInternalError ());
792
792
Assert (scratch.phi_field .size () == advection_dofs_per_cell, ExcInternalError ());
793
793
794
- const unsigned int solution_component
795
- = advection_field.component_index (introspection);
796
-
797
794
const FEValuesExtractors::Scalar solution_field
798
795
= (advection_field.is_temperature ()
799
796
?
You can’t perform that action at this time.
0 commit comments