2012-09-11 15:42:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
|
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
|
|
\\ / O peration |
|
|
|
|
\\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd.
|
|
|
|
\\/ M anipulation |
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
|
|
|
This file is part of OpenFOAM.
|
|
|
|
|
|
|
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
Application
|
|
|
|
elasticNonLinULSolidFoam
|
|
|
|
|
|
|
|
Description
|
|
|
|
Finite volume structural solver employing a incremental strain updated
|
|
|
|
Lagrangian approach.
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2012-09-11 15:42:55 +00:00
|
|
|
Valid for small strains, finite displacements and finite rotations.
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2012-09-11 15:42:55 +00:00
|
|
|
Author
|
2013-10-11 13:31:14 +00:00
|
|
|
Philip Cardiff UCD
|
2012-09-11 15:42:55 +00:00
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "fvCFD.H"
|
2013-10-11 13:31:14 +00:00
|
|
|
#include "constitutiveModel.H"
|
2012-09-11 15:42:55 +00:00
|
|
|
#include "solidInterface.H"
|
|
|
|
#include "volPointInterpolation.H"
|
|
|
|
#include "pointPatchInterpolation.H"
|
|
|
|
#include "primitivePatchInterpolation.H"
|
|
|
|
#include "pointFields.H"
|
|
|
|
#include "twoDPointCorrector.H"
|
|
|
|
#include "leastSquaresVolPointInterpolation.H"
|
|
|
|
#include "processorFvPatchFields.H"
|
2013-10-11 13:31:14 +00:00
|
|
|
#include "transformGeometricField.H"
|
2013-10-14 08:26:40 +00:00
|
|
|
#include "symmetryPolyPatch.H"
|
2013-10-11 13:31:14 +00:00
|
|
|
|
2012-09-11 15:42:55 +00:00
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-10-11 13:31:14 +00:00
|
|
|
# include "setRootCase.H"
|
|
|
|
# include "createTime.H"
|
|
|
|
# include "createMesh.H"
|
|
|
|
# include "createFields.H"
|
|
|
|
# include "readDivDSigmaExpMethod.H"
|
|
|
|
# include "readDivDSigmaLargeStrainExpMethod.H"
|
|
|
|
# include "readMoveMeshMethod.H"
|
|
|
|
# include "createSolidInterfaceNonLin.H"
|
2013-10-14 08:26:40 +00:00
|
|
|
# include "findGlobalFaceZones.H"
|
2012-09-11 15:42:55 +00:00
|
|
|
|
|
|
|
//* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
Info << "\nStarting time loop\n" << endl;
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
for (runTime++; !runTime.end(); runTime++)
|
2012-09-11 15:42:55 +00:00
|
|
|
{
|
2013-10-11 13:31:14 +00:00
|
|
|
Info<< "Time = " << runTime.timeName() << nl << endl;
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2013-10-14 08:26:40 +00:00
|
|
|
# include "readSolidMechanicsControls.H"
|
2013-10-11 13:31:14 +00:00
|
|
|
|
|
|
|
int iCorr = 0;
|
|
|
|
lduMatrix::solverPerformance solverPerf;
|
2013-10-14 08:26:40 +00:00
|
|
|
scalar initialResidual = 1.0;
|
2013-10-11 13:31:14 +00:00
|
|
|
scalar relativeResidual = 1.0;
|
|
|
|
lduMatrix::debug = 0;
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
do
|
2013-11-07 20:22:30 +00:00
|
|
|
{
|
|
|
|
DU.storePrevIter();
|
2013-10-11 13:31:14 +00:00
|
|
|
|
|
|
|
# include "calculateDivDSigmaExp.H"
|
|
|
|
# include "calculateDivDSigmaLargeStrainExp.H"
|
|
|
|
|
2013-11-07 20:22:30 +00:00
|
|
|
//- Updated lagrangian momentum equation
|
|
|
|
fvVectorMatrix DUEqn
|
|
|
|
(
|
|
|
|
fvm::d2dt2(rho,DU)
|
|
|
|
==
|
|
|
|
fvm::laplacian(2*muf + lambdaf, DU, "laplacian(DDU,DU)")
|
|
|
|
+ divDSigmaExp
|
|
|
|
+ divDSigmaLargeStrainExp
|
|
|
|
);
|
|
|
|
|
|
|
|
if (solidInterfaceCorr)
|
|
|
|
{
|
|
|
|
solidInterfacePtr->correct(DUEqn);
|
|
|
|
}
|
|
|
|
|
|
|
|
solverPerf = DUEqn.solve();
|
|
|
|
|
|
|
|
if (iCorr == 0)
|
|
|
|
{
|
|
|
|
initialResidual = solverPerf.initialResidual();
|
|
|
|
}
|
|
|
|
|
|
|
|
DU.relax();
|
|
|
|
|
|
|
|
gradDU = fvc::grad(DU);
|
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
# include "calculateDEpsilonDSigma.H"
|
|
|
|
# include "calculateRelativeResidual.H"
|
2013-11-07 20:22:30 +00:00
|
|
|
|
|
|
|
Info << "\tTime " << runTime.value()
|
|
|
|
<< ", Corrector " << iCorr
|
|
|
|
<< ", Solving for " << DU.name()
|
|
|
|
<< " using " << solverPerf.solverName()
|
|
|
|
<< ", res = " << solverPerf.initialResidual()
|
|
|
|
<< ", rel res = " << relativeResidual
|
|
|
|
<< ", inner iters " << solverPerf.nIterations() << endl;
|
|
|
|
}
|
2012-09-11 15:42:55 +00:00
|
|
|
while
|
2013-10-11 13:31:14 +00:00
|
|
|
(
|
2013-11-07 20:22:30 +00:00
|
|
|
//solverPerf.initialResidual() > convergenceTolerance
|
|
|
|
relativeResidual > convergenceTolerance
|
|
|
|
&& ++iCorr < nCorr
|
|
|
|
);
|
|
|
|
|
|
|
|
Info << nl << "Time " << runTime.value() << ", Solving for " << DU.name()
|
|
|
|
<< ", Initial residual = " << initialResidual
|
|
|
|
<< ", Final residual = " << solverPerf.initialResidual()
|
|
|
|
<< ", No outer iterations " << iCorr << endl;
|
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
# include "moveMesh.H"
|
|
|
|
# include "rotateFields.H"
|
|
|
|
# include "writeFields.H"
|
|
|
|
|
2013-11-07 20:22:30 +00:00
|
|
|
Info<< nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
|
|
|
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
|
|
|
<< endl;
|
2012-09-11 15:42:55 +00:00
|
|
|
}
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
Info<< "End\n" << endl;
|
2013-11-07 20:22:30 +00:00
|
|
|
|
2013-10-11 13:31:14 +00:00
|
|
|
return(0);
|
2012-09-11 15:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************************* //
|