Formatting
This commit is contained in:
parent
f42425370d
commit
365f13718c
3 changed files with 31 additions and 103 deletions
|
@ -1,4 +1,4 @@
|
|||
if(divSigmaExpMethod == "standard")
|
||||
if (divSigmaExpMethod == "standard")
|
||||
{
|
||||
divSigmaExp = fvc::div
|
||||
(
|
||||
|
|
|
@ -52,6 +52,7 @@ int main(int argc, char *argv[])
|
|||
# include "setRootCase.H"
|
||||
# include "createTime.H"
|
||||
# include "createMesh.H"
|
||||
# include "readGravitationalAcceleration.H"
|
||||
# include "createFields.H"
|
||||
# include "createHistory.H"
|
||||
# include "readDivSigmaExpMethod.H"
|
||||
|
@ -71,7 +72,7 @@ int main(int argc, char *argv[])
|
|||
lduMatrix::solverPerformance solverPerf;
|
||||
scalar initialResidual = 1.0;
|
||||
scalar relativeResidual = 1.0;
|
||||
lduMatrix::debug = 0;
|
||||
// lduMatrix::debug = 0;
|
||||
|
||||
if (predictor)
|
||||
{
|
||||
|
@ -95,6 +96,7 @@ int main(int argc, char *argv[])
|
|||
==
|
||||
fvm::laplacian(2*muf + lambdaf, U, "laplacian(DU,U)")
|
||||
+ divSigmaExp
|
||||
+ rho*g
|
||||
);
|
||||
|
||||
if (solidInterfaceCorr)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
if (runTime.outputTime())
|
||||
{
|
||||
{
|
||||
volScalarField epsilonEq
|
||||
(
|
||||
IOobject
|
||||
|
@ -32,79 +32,5 @@ if (runTime.outputTime())
|
|||
Info<< "Max sigmaEq = " << max(sigmaEq).value()
|
||||
<< endl;
|
||||
|
||||
//- boundary traction
|
||||
// volVectorField traction
|
||||
// (
|
||||
// IOobject
|
||||
// (
|
||||
// "traction",
|
||||
// runTime.timeName(),
|
||||
// mesh,
|
||||
// IOobject::NO_READ,
|
||||
// IOobject::AUTO_WRITE
|
||||
// ),
|
||||
// mesh,
|
||||
// dimensionedVector("zero", dimForce/dimArea, vector::zero)
|
||||
// );
|
||||
// forAll(traction.boundaryField(), patchi)
|
||||
// {
|
||||
// traction.boundaryField()[patchi] =
|
||||
// n.boundaryField()[patchi] & sigma.boundaryField()[patchi];
|
||||
// }
|
||||
|
||||
// contact fields
|
||||
// if(contactBoundaries)
|
||||
// {
|
||||
// volScalarField stickSlipFaces
|
||||
// (
|
||||
// IOobject
|
||||
// (
|
||||
// "stickSlipFaces",
|
||||
// runTime.timeName(),
|
||||
// mesh,
|
||||
// IOobject::NO_READ,
|
||||
// IOobject::AUTO_WRITE
|
||||
// ),
|
||||
// mesh,
|
||||
// dimensionedScalar("zero", dimless, 0.0)
|
||||
// );
|
||||
// forAll(stickSlipFaces.boundaryField(), patchi)
|
||||
// {
|
||||
// if(U.boundaryField()[patchi].type()
|
||||
// ==
|
||||
// solidContactFvPatchVectorField::typeName)
|
||||
// {
|
||||
// const solidContactFvPatchVectorField& Upatch =
|
||||
// refCast<const solidContactFvPatchVectorField>
|
||||
// (U.boundaryField()[patchi]);
|
||||
|
||||
// if(!Upatch.master())
|
||||
// {
|
||||
// stickSlipFaces.boundaryField()[patchi] =
|
||||
// Upatch.frictionContactModelPtr()->stickSlipFaces();
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// stickSlipFaces.write();
|
||||
// }
|
||||
|
||||
|
||||
//- boundary forces
|
||||
// Info << nl;
|
||||
// forAll(mesh.boundary(), patchi)
|
||||
// {
|
||||
// Info << "Patch " << mesh.boundary()[patchi].name() << endl;
|
||||
// vectorField totalForce = mesh.Sf().boundaryField()[patchi] & sigma.boundaryField()[patchi];
|
||||
|
||||
// vector force = sum( totalForce );
|
||||
// Info << "\ttotal force is " << force << " N" << endl;
|
||||
|
||||
// const vectorField& nb = n.boundaryField()[patchi];
|
||||
// scalar normalForce = sum( nb & totalForce );
|
||||
// Info << "\tnormal force is " << normalForce << " N" << endl;
|
||||
// scalar shearForce = mag(sum( (I - sqr(nb)) & totalForce ));
|
||||
// Info << "\tshear force is " << shearForce << " N" << endl;
|
||||
// }
|
||||
|
||||
runTime.write();
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue