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

[PL] LIE/HM; Simplify vector access.

parent 976efb0e
No related branches found
No related tags found
No related merge requests found
...@@ -484,7 +484,7 @@ void HydroMechanicsProcess<GlobalDim>::computeSecondaryVariableConcrete( ...@@ -484,7 +484,7 @@ void HydroMechanicsProcess<GlobalDim>::computeSecondaryVariableConcrete(
ProcessLib::SpatialPosition x; ProcessLib::SpatialPosition x;
x.setNodeID(node_id); x.setNodeID(node_id);
vec_b[node_id] = w[GlobalDim == 2 ? 1 : 2] + vec_b[node_id] = w[GlobalDim - 1] +
(*_process_data.fracture_property->aperture0)(0, x)[0]; (*_process_data.fracture_property->aperture0)(0, x)[0];
} }
} }
......
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