This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/solidMechanics/elasticIncrSolidFoam/elasticIncrSolidFoam.C

160 lines
4.9 KiB
C
Raw Normal View History

2012-09-11 15:42:55 +00:00
/*---------------------------------------------------------------------------*\
========= |
2013-12-11 16:09:41 +00:00
\\ / F ield | foam-extend: Open Source CFD
2016-06-20 15:00:40 +00:00
\\ / O peration | Version: 4.0
\\ / A nd | Web: http://www.foam-extend.org
\\/ M anipulation | For copyright notice see file Copyright
2012-09-11 15:42:55 +00:00
-------------------------------------------------------------------------------
License
2013-12-11 16:09:41 +00:00
This file is part of foam-extend.
2012-09-11 15:42:55 +00:00
2013-12-11 16:09:41 +00:00
foam-extend is free software: you can redistribute it and/or modify it
2012-09-11 15:42:55 +00:00
under the terms of the GNU General Public License as published by the
2013-12-11 16:09:41 +00:00
Free Software Foundation, either version 3 of the License, or (at your
2012-09-11 15:42:55 +00:00
option) any later version.
2013-12-11 16:09:41 +00:00
foam-extend 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.
2012-09-11 15:42:55 +00:00
You should have received a copy of the GNU General Public License
2013-12-11 16:09:41 +00:00
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
2012-09-11 15:42:55 +00:00
Application
elasticIncrSolidFoam
Description
Transient/steady-state segregated finite-volume solver for small strain
elastic solid bodies.
Displacement Increment field DU is solved for using a incremental total
Lagrangian approach,
also generating the strain tensor field epsilon and stress tensor
field sigma.
With optional multi-material solid interface correction ensuring
correct tractions on multi-material interfaces
Author
Philip Cardiff
multi-material by Tukovic et al. 2012
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "constitutiveModel.H"
2012-09-11 15:42:55 +00:00
#include "solidInterface.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
2013-11-04 12:00:46 +00:00
# include "setRootCase.H"
# include "createTime.H"
# include "createMesh.H"
# include "createFields.H"
# include "readDivDSigmaExpMethod.H"
# include "createSolidInterfaceIncr.H"
2012-09-11 15:42:55 +00:00
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2013-11-04 12:00:46 +00:00
Info<< "\nStarting time loop\n" << endl;
2012-09-11 15:42:55 +00:00
2013-11-04 12:00:46 +00:00
while(runTime.loop())
2012-09-11 15:42:55 +00:00
{
Info<< "Time = " << runTime.timeName() << nl << endl;
2012-09-11 15:42:55 +00:00
2013-11-04 12:00:46 +00:00
# include "readSolidMechanicsControls.H"
2012-09-11 15:42:55 +00:00
2013-11-04 12:00:46 +00:00
int iCorr = 0;
scalar initialResidual = 0;
scalar relativeResidual = 1.0;
lduSolverPerformance solverPerf;
2013-11-04 12:00:46 +00:00
lduMatrix::debug = 0;
do
2012-09-11 15:42:55 +00:00
{
2013-11-04 12:00:46 +00:00
DU.storePrevIter();
2012-09-11 15:42:55 +00:00
2013-11-04 12:00:46 +00:00
# include "calculateDivDSigmaExp.H"
2012-09-11 15:42:55 +00:00
2014-02-23 10:54:20 +00:00
// Linear momentum equation
2013-11-04 12:00:46 +00:00
fvVectorMatrix DUEqn
2012-09-11 15:42:55 +00:00
(
2013-11-04 12:00:46 +00:00
fvm::d2dt2(rho, DU)
==
fvm::laplacian(2*muf + lambdaf, DU, "laplacian(DDU,DU)")
+ divDSigmaExp
);
if (solidInterfaceCorr)
{
solidInterfacePtr->correct(DUEqn);
}
solverPerf = DUEqn.solve();
if (iCorr == 0)
{
// initialResidual = solverPerf.initialResidual();
// force at least two outer correctors
initialResidual = 1.0;
}
DU.relax();
//gradDU = solidInterfacePtr->grad(DU);
gradDU = fvc::grad(DU);
# include "calculateRelativeResidual.H"
if (iCorr % infoFrequency == 0)
{
2013-11-04 12:00:46 +00:00
Info<< "\tTime " << runTime.value()
<< ", Corrector " << iCorr
<< ", Solving for " << U.name()
<< " using " << solverPerf.solverName()
<< ", res = " << solverPerf.initialResidual()
<< ", rel res = " << relativeResidual
<< ", inner iters = " << solverPerf.nIterations() << endl;
}
2012-09-11 15:42:55 +00:00
}
2013-11-04 12:00:46 +00:00
while
(
solverPerf.initialResidual() > convergenceTolerance
//relativeResidual > convergenceTolerance
&& ++iCorr < nCorr
);
2014-02-23 10:54:20 +00:00
Info<< nl << "Time " << runTime.value()
<< ", Solving for " << DU.name()
2013-11-04 12:00:46 +00:00
<< ", Initial residual = " << initialResidual
<< ", Final residual = " << solverPerf.initialResidual()
<< ", Relative residual = " << relativeResidual
<< ", No outer iterations " << iCorr
<< nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< endl;
# include "calculateDEpsilonDSigma.H"
U += DU;
sigma += DSigma;
epsilon += DEpsilon;
# include "writeFields.H"
Info<< "ExecutionTime = "
<< runTime.elapsedCpuTime()
<< " s\n\n" << endl;
2012-09-11 15:42:55 +00:00
}
2013-11-04 12:00:46 +00:00
Info<< "End\n" << endl;
return(0);
2012-09-11 15:42:55 +00:00
}
// ************************************************************************* //