From dc12ec7a137267f50df2aac481034a84ae940109 Mon Sep 17 00:00:00 2001
From: Norihiro Watanabe <norihiro.watanabe@aist.go.jp>
Date: Fri, 18 Jan 2019 09:33:25 +0900
Subject: [PATCH] [TM] renamed to KelvinVectorIntegrationPointWriter

---
 ProcessLib/ThermoMechanics/ThermoMechanicsProcess.cpp | 4 ++--
 ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.cpp b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.cpp
index 4cb129981dc..86ac03e90b5 100644
--- a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.cpp
+++ b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.cpp
@@ -39,7 +39,7 @@ ThermoMechanicsProcess<DisplacementDim>::ThermoMechanicsProcess(
       _process_data(std::move(process_data))
 {
     _integration_point_writer.emplace_back(
-        std::make_unique<SigmaIntegrationPointWriter>(
+        std::make_unique<KelvinVectorIntegrationPointWriter>(
             "sigma_ip",
             static_cast<int>(mesh.getDimension() == 2 ? 4 : 6) /*n components*/,
             2 /*integration order*/, [this]() {
@@ -59,7 +59,7 @@ ThermoMechanicsProcess<DisplacementDim>::ThermoMechanicsProcess(
             }));
 
     _integration_point_writer.emplace_back(
-        std::make_unique<SigmaIntegrationPointWriter>(
+        std::make_unique<KelvinVectorIntegrationPointWriter>(
             "epsilon_ip",
             static_cast<int>(mesh.getDimension() == 2 ? 4 : 6) /*n components*/,
             2 /*integration order*/, [this]() {
diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h
index a8bd6a58dda..869e7e7e41c 100644
--- a/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h
+++ b/ProcessLib/ThermoMechanics/ThermoMechanicsProcess.h
@@ -20,9 +20,9 @@ namespace ThermoMechanics
 {
 struct ThermoMechanicsLocalAssemblerInterface;
 
-struct SigmaIntegrationPointWriter final : public IntegrationPointWriter
+struct KelvinVectorIntegrationPointWriter final : public IntegrationPointWriter
 {
-    explicit SigmaIntegrationPointWriter(
+    explicit KelvinVectorIntegrationPointWriter(
         std::string const& name,
         int const n_components,
         int const integration_order,
-- 
GitLab