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/elasticNonLinULSolidFoam/elasticNonLinULSolidFoam.C

184 lines
5 KiB
C
Raw Normal View History

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.
2012-09-11 15:42:55 +00:00
Valid for small strains, finite displacements and finite rotations.
2012-09-11 15:42:55 +00:00
Author
Philip Cardiff
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "rheologyModel.H"
#include "solidInterface.H"
#include "volPointInterpolation.H"
#include "pointPatchInterpolation.H"
#include "primitivePatchInterpolation.H"
#include "pointFields.H"
#include "plane.H"
#include "meshSearch.H"
#include "twoDPointCorrector.H"
#include "leastSquaresVolPointInterpolation.H"
#include "processorFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
# include "setRootCase.H"
# include "createTime.H"
# include "createMesh.H"
# include "createFields.H"
# include "readDivDSigmaExpMethod.H"
# include "readDivDSigmaLargeStrainExpMethod.H"
# include "readMoveMeshMethod.H"
# include "createSolidInterface.H"
//* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info << "\nStarting time loop\n" << endl;
2012-09-11 15:42:55 +00:00
for (runTime++; !runTime.end(); runTime++)
{
Info<< "Time = " << runTime.timeName() << nl << endl;
2012-09-11 15:42:55 +00:00
# include "readStressedFoamControls.H"
int iCorr = 0;
lduMatrix::solverPerformance solverPerf;
scalar initialResidual = 0;
scalar relativeResidual = GREAT;
lduMatrix::debug = 0;
2012-09-11 15:42:55 +00:00
do
{
2012-09-11 15:42:55 +00:00
DU.storePrevIter();
divDSigmaLargeStrainExp.storePrevIter();
# include "calculateDivDSigmaExp.H"
2012-09-11 15:42:55 +00:00
# include "calculateDivDSigmaLargeStrainExp.H"
//----------------------------------------------------//
//- updated lagrangian large strain momentum equation
//----------------------------------------------------//
fvVectorMatrix DUEqn
(
fvm::d2dt2(rho,DU)
==
fvm::laplacian(2*muf + lambdaf, DU, "laplacian(DDU,DU)")
+ divDSigmaExp
+ divDSigmaLargeStrainExp
);
2012-09-11 15:42:55 +00:00
if(solidInterfaceCorr)
{
solidInterfacePtr->correct(DUEqn);
}
solverPerf = DUEqn.solve();
if(iCorr == 0)
{
initialResidual = solverPerf.initialResidual();
}
2012-09-11 15:42:55 +00:00
DU.relax();
2012-09-11 15:42:55 +00:00
if(solidInterfaceCorr)
{
gradDU = solidInterfacePtr->grad(DU);
}
else
{
gradDU = fvc::grad(DU);
}
2012-09-11 15:42:55 +00:00
# include "calculateDEpsilonDSigma.H"
# include "calculateRelativeResidual.H"
2012-09-11 15:42:55 +00:00
Info << "\tTime " << runTime.value()
<< ", Corrector " << iCorr
<< ", Solving for " << DU.name()
<< " using " << solverPerf.solverName()
<< ", residual = " << solverPerf.initialResidual()
<< ", residualDU = " << relativeResidual
<< ", inner iterations " << solverPerf.nIterations() << endl;
}
while
(
//solverPerf.initialResidual() > convergenceTolerance
2012-09-11 15:42:55 +00:00
relativeResidual > convergenceTolerance
&& ++iCorr < nCorr
);
lduMatrix::debug = 1;
Info << nl << "Time " << runTime.value() << ", Solving for " << DU.name()
<< ", Initial residual = " << initialResidual
2012-09-11 15:42:55 +00:00
<< ", Final residual = " << solverPerf.initialResidual()
<< ", No outer iterations " << iCorr << endl;
2012-09-11 15:42:55 +00:00
# include "rotateFields.H"
# include "moveMesh.H"
# include "writeFields.H"
//- total force
forAll(mesh.boundary(), patchi)
{
vector force = sum(mesh.Sf().boundaryField()[patchi] & sigma.boundaryField()[patchi]);
Info << "force on " << mesh.boundary()[patchi].name()
<< " is " << force << endl;
}
Info << nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
2012-09-11 15:42:55 +00:00
<< endl;
}
2012-09-11 15:42:55 +00:00
Info<< "End\n" << endl;
2012-09-11 15:42:55 +00:00
return(0);
}
// ************************************************************************* //