Skip to content
Snippets Groups Projects
Commit f1251bc4 authored by joergbuchwald's avatar joergbuchwald Committed by Dmitri Naumov
Browse files

use transformation from parameter lib

parent 30971004
No related branches found
No related tags found
No related merge requests found
......@@ -176,11 +176,9 @@ PropertyDataType EffectiveThermalConductivityPorosityMixing<GlobalDim>::value(
if (local_coordinate_system_ &&
(solid_thermal_conductivity.cols() == GlobalDim))
{
Eigen::Matrix<double, GlobalDim, GlobalDim> const e =
local_coordinate_system_->transformation<GlobalDim>(pos);
solid_thermal_conductivity =
e.transpose() * solid_thermal_conductivity * e;
local_coordinate_system_->rotateTensor<GlobalDim>(
solid_thermal_conductivity, pos);
}
auto const I = Eigen::Matrix<double, GlobalDim, GlobalDim>::Identity();
Eigen::Matrix<double, GlobalDim, GlobalDim> const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment