Skip to content
Snippets Groups Projects
Commit dd44a680 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL,T] adapted to changes

parent 754e6167
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ public:
_localA.setZero();
_localRhs.setZero();
auto const indices = NumLib::getIndices(id, dof_table);
auto const local_x = NumLib::getLocalNodalDOFs(x, indices);
auto const local_x = x.get(indices);
IntegrationMethod integration_method(_integration_order);
unsigned const n_integration_points = integration_method.getNumberOfPoints();
......
......@@ -142,7 +142,7 @@ void TESLocalAssembler<ShapeFunction_, IntegrationMethod_, GlobalDim>::assemble(
_local_K.setZero();
_local_b.setZero();
auto const indices = NumLib::getIndices(id, dof_table);
auto const local_x = NumLib::getLocalNodalDOFs(x, indices);
auto const local_x = x.get(indices);
IntegrationMethod_ integration_method(_integration_order);
unsigned const n_integration_points = integration_method.getNumberOfPoints();
......
......@@ -188,7 +188,7 @@ public:
GlobalVector const& x,
IntegrationPointValue const property) {
auto const indices = NumLib::getIndices(id, dof_table);
auto const local_x = NumLib::getLocalNodalDOFs(x, indices);
auto const local_x = x.get(indices);
loc_asm.interpolateNodalValuesToIntegrationPoints(local_x,
property);
......
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