1 Info<< "Reading displacement increment field DU\n" << endl;
15 volTensorField gradDU = fvc::grad(DU);
20 Info<< "Reading velocity increment field DV\n" << endl;
28 IOobject::READ_IF_PRESENT,
32 dimensionedVector("zero", dimVelocity, vector::zero)
35 Info<< "Reading stress increment field DSigma\n" << endl;
36 volSymmTensorField DSigma
43 IOobject::READ_IF_PRESENT,
47 dimensionedSymmTensor("zero", dimForce/dimArea, symmTensor::zero)
51 Info<< "Reading strain increment field Depsilon\n" << endl;
52 volSymmTensorField Depsilon
59 IOobject::READ_IF_PRESENT,
63 dimensionedSymmTensor("zero", dimless, symmTensor::zero)
67 Info<< "Reading accumulated displacement field U\n" << endl;
75 IOobject::READ_IF_PRESENT,
79 dimensionedVector("zero", dimLength, vector::zero)
83 Info<< "Reading stress field sigma\n" << endl;
84 volSymmTensorField sigma
91 IOobject::READ_IF_PRESENT,
95 dimensionedSymmTensor("zero", dimForce/dimArea, symmTensor::zero)
99 Info<< "Reading stress increment field DSigmaCorr\n" << endl;
100 volSymmTensorField DSigmaCorr
107 IOobject::READ_IF_PRESENT,
111 dimensionedSymmTensor("zero", dimForce/dimArea, symmTensor::zero)
114 constitutiveModel rheology(sigma, DU);
116 volScalarField rho = rheology.rho();