Memosa-FVM  0.2
PlateFields.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 "PlateFields.h"
6 
7 PlateFields::PlateFields(const string baseName) :
8  deformation(baseName + ".deformation"),
9  moment(baseName + ".moment"),
10  stress(baseName + ".stress"),
11  residualStress(baseName + ".residualStress"),
12  devStress(baseName + ".devStress"),
13  VMStress(baseName + ".VMStress"),
14  VMStressOut(baseName + ".VMStressOut"),
15  strain(baseName + ".strain"),
16  plasticStrain(baseName + ".plasticStrain"),
17  plasticStrainOut(baseName + ".plasticStrainOut"),
18  plasticStrainN1(baseName + ".plasticStrainN1"),
19  plasticMoment(baseName + ".plasticMoment"),
20  deformationGradient(baseName + ".deformationGradient"),
21  deformationFlux(baseName + ".deformationFlux"),
22  ym(baseName + ".ym"),
23  nu(baseName + ".nu"),
24  density(baseName + ".density"),
25  deformationN1(baseName + ".deformationN1"),
26  deformationN2(baseName + ".deformationN2"),
27  deformationN3(baseName + ".deformationN3"),
28  tractionX(baseName + ".tractionX"),
29  tractionY(baseName + ".tractionY"),
30  tractionZ(baseName + ".tractionZ"),
31  thickness(baseName + ".thickness"),
32  force(baseName + ".force"),
33  acceleration(baseName + ".acceleration"),
34  velocity(baseName + ".velocity"),
35  bodyForce(baseName + ".bodyForce"),
36  volume0(baseName + ".volume0")
37 {}
38 
PlateFields(const string baseName)
Definition: PlateFields.cpp:7