mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
use of tensor::XX instead of symmTensor::XX
This commit is contained in:
@ -97,7 +97,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::XX)
|
||||
sigma.component(symmTensor::XX)
|
||||
);
|
||||
sigmaxx.write();
|
||||
|
||||
@ -110,7 +110,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::YY)
|
||||
sigma.component(symmTensor::YY)
|
||||
);
|
||||
sigmayy.write();
|
||||
|
||||
@ -123,7 +123,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::ZZ)
|
||||
sigma.component(symmTensor::ZZ)
|
||||
);
|
||||
sigmazz.write();
|
||||
|
||||
@ -136,7 +136,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::XY)
|
||||
sigma.component(symmTensor::XY)
|
||||
);
|
||||
sigmaxy.write();
|
||||
|
||||
@ -149,7 +149,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::XZ)
|
||||
sigma.component(symmTensor::XZ)
|
||||
);
|
||||
sigmaxz.write();
|
||||
|
||||
@ -162,7 +162,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
sigma.component(tensor::YZ)
|
||||
sigma.component(symmTensor::YZ)
|
||||
);
|
||||
sigmayz.write();
|
||||
|
||||
@ -190,7 +190,7 @@ int main(int argc, char *argv[])
|
||||
mesh,
|
||||
IOobject::NO_READ
|
||||
),
|
||||
0.0*sigma.component(tensor::YZ)
|
||||
0.0*sigma.component(symmTensor::YZ)
|
||||
);
|
||||
|
||||
forAll(sigmaUn.boundaryField(), patchI)
|
||||
|
||||
Reference in New Issue
Block a user