use of tensor::XX instead of symmTensor::XX

This commit is contained in:
mattijs
2009-08-13 12:14:05 +01:00
parent a36af20908
commit 333dff7885

View File

@ -97,7 +97,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::XX) sigma.component(symmTensor::XX)
); );
sigmaxx.write(); sigmaxx.write();
@ -110,7 +110,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::YY) sigma.component(symmTensor::YY)
); );
sigmayy.write(); sigmayy.write();
@ -123,7 +123,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::ZZ) sigma.component(symmTensor::ZZ)
); );
sigmazz.write(); sigmazz.write();
@ -136,7 +136,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::XY) sigma.component(symmTensor::XY)
); );
sigmaxy.write(); sigmaxy.write();
@ -149,7 +149,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::XZ) sigma.component(symmTensor::XZ)
); );
sigmaxz.write(); sigmaxz.write();
@ -162,7 +162,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
sigma.component(tensor::YZ) sigma.component(symmTensor::YZ)
); );
sigmayz.write(); sigmayz.write();
@ -190,7 +190,7 @@ int main(int argc, char *argv[])
mesh, mesh,
IOobject::NO_READ IOobject::NO_READ
), ),
0.0*sigma.component(tensor::YZ) 0.0*sigma.component(symmTensor::YZ)
); );
forAll(sigmaUn.boundaryField(), patchI) forAll(sigmaUn.boundaryField(), patchI)