Memosa-FVM  0.2
StructureFields.cpp
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #include "StructureFields.h"
6 
7 StructureFields::StructureFields(const string baseName) :
8  deformation(baseName + ".deformation"),
9  elasticDeformation(baseName + ".elasticDeformation"),
10  deformationGradient(baseName + ".deformationGradient"),
11  deformationFlux(baseName + ".deformationFlux"),
12  eta(baseName + ".eta"),
13  eta1(baseName + ".eta1"),
14  alpha(baseName + ".alpha"),
15  density(baseName + ".density"),
16  deformationN1(baseName + ".deformationN1"),
17  deformationN2(baseName + ".deformationN2"),
18  deformationN3(baseName + ".deformationN3"),
19  tractionX(baseName + ".tractionX"),
20  tractionY(baseName + ".tractionY"),
21  tractionZ(baseName + ".tractionZ"),
22  strainX(baseName + ".strainX"),
23  strainY(baseName + ".strainY"),
24  strainZ(baseName + ".strainZ"),
25  plasticDiagStrain(baseName + ".plasticDiagStrain"),
26  devStress(baseName + ".devStress"),
27  VMStress(baseName + ".VMStress"),
28  plasticStrain(baseName + ".plasticStrain"),
29  temperature(baseName + ".temperature"),
30  bodyForce(baseName + ".bodyForce"),
31  volume0(baseName + ".volume0"),
32  creepConstant(baseName + ".creepConstant")
33 {}
34 
StructureFields(const string baseName)