From 4c6d6143927a64ceb7baf05542dfdce39df417af Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 23 Mar 2015 09:48:24 +0000 Subject: [PATCH] Don't hard-code 'Hencky-energy' anywhere; we are not restricted to that [[Imported from SVN: r10109]] --- src/finite-strain-elasticity.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/finite-strain-elasticity.cc b/src/finite-strain-elasticity.cc index f5cf73e9..3d7bf5a5 100644 --- a/src/finite-strain-elasticity.cc +++ b/src/finite-strain-elasticity.cc @@ -221,7 +221,7 @@ int main (int argc, char *argv[]) try auto vtkDisplacement = Dune::make_shared<VTKBasisGridFunction<FEBasis,BlockVector<FieldVector<double,3> > > > (feBasis, displacement, "Displacement"); vtkWriter.addVertexData(vtkDisplacement); - vtkWriter.write(resultPath + "hencky_homotopy_0"); + vtkWriter.write(resultPath + "finite-strain_homotopy_0"); for (int i=0; i<numHomotopySteps; i++) { @@ -252,13 +252,13 @@ int main (int argc, char *argv[]) try StVenantKirchhoffEnergy<GridView, FEBasis::LocalFiniteElement, - adouble> henckyEnergy(materialParameters, + adouble> elasticEnergy(materialParameters, &neumannBoundary, neumannFunction.get()); LocalADOLCStiffness<GridView, FEBasis::LocalFiniteElement, - SolutionType> localADOLCStiffness(&henckyEnergy); + SolutionType> localADOLCStiffness(&elasticEnergy); FEAssembler<FEBasis,SolutionType> assembler(gridView, &localADOLCStiffness); @@ -327,7 +327,7 @@ int main (int argc, char *argv[]) try auto vtkDisplacement = Dune::make_shared<VTKBasisGridFunction<FEBasis,BlockVector<FieldVector<double,3> > > > (feBasis, displacement, "Displacement"); vtkWriter.addVertexData(vtkDisplacement); - vtkWriter.write(resultPath + "hencky_homotopy_" + std::to_string(i+1)); + vtkWriter.write(resultPath + "finite-strain_homotopy_" + std::to_string(i+1)); } -- GitLab