/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 3.2 \\ / A nd | Web: http://www.foam-extend.org \\/ M anipulation | For copyright notice see file Copyright ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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 3 of the License, or (at your option) any later version. 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. You should have received a copy of the GNU General Public License along with foam-extend. If not, see . \*---------------------------------------------------------------------------*/ #include "tractionDisplacementFvPatchVectorField.H" #include "addToRunTimeSelectionTable.H" #include "volFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // tractionDisplacementFvPatchVectorField:: tractionDisplacementFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF ) : fixedGradientFvPatchVectorField(p, iF), traction_(p.size(), vector::zero), pressure_(p.size(), 0.0) { fvPatchVectorField::operator=(patchInternalField()); gradient() = vector::zero; } tractionDisplacementFvPatchVectorField:: tractionDisplacementFvPatchVectorField ( const tractionDisplacementFvPatchVectorField& tdpvf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedGradientFvPatchVectorField(tdpvf, p, iF, mapper), traction_(tdpvf.traction_, mapper), pressure_(tdpvf.pressure_, mapper) {} tractionDisplacementFvPatchVectorField:: tractionDisplacementFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedGradientFvPatchVectorField(p, iF), traction_("traction", dict, p.size()), pressure_("pressure", dict, p.size()) { fvPatchVectorField::operator=(patchInternalField()); gradient() = vector::zero; } tractionDisplacementFvPatchVectorField:: tractionDisplacementFvPatchVectorField ( const tractionDisplacementFvPatchVectorField& tdpvf ) : fixedGradientFvPatchVectorField(tdpvf), traction_(tdpvf.traction_), pressure_(tdpvf.pressure_) {} tractionDisplacementFvPatchVectorField:: tractionDisplacementFvPatchVectorField ( const tractionDisplacementFvPatchVectorField& tdpvf, const DimensionedField& iF ) : fixedGradientFvPatchVectorField(tdpvf, iF), traction_(tdpvf.traction_), pressure_(tdpvf.pressure_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void tractionDisplacementFvPatchVectorField::autoMap ( const fvPatchFieldMapper& m ) { fixedGradientFvPatchVectorField::autoMap(m); traction_.autoMap(m); pressure_.autoMap(m); } // Reverse-map the given fvPatchField onto this fvPatchField void tractionDisplacementFvPatchVectorField::rmap ( const fvPatchVectorField& ptf, const labelList& addr ) { fixedGradientFvPatchVectorField::rmap(ptf, addr); const tractionDisplacementFvPatchVectorField& dmptf = refCast(ptf); traction_.rmap(dmptf.traction_, addr); pressure_.rmap(dmptf.pressure_, addr); } // Update the coefficients associated with the patch field void tractionDisplacementFvPatchVectorField::updateCoeffs() { if (updated()) { return; } const dictionary& mechanicalProperties = db().lookupObject("mechanicalProperties"); const dictionary& thermalProperties = db().lookupObject("thermalProperties"); dimensionedScalar rho(mechanicalProperties.lookup("rho")); dimensionedScalar rhoE(mechanicalProperties.lookup("E")); dimensionedScalar nu(mechanicalProperties.lookup("nu")); dimensionedScalar E = rhoE/rho; dimensionedScalar mu = E/(2.0*(1.0 + nu)); dimensionedScalar lambda = nu*E/((1.0 + nu)*(1.0 - 2.0*nu)); dimensionedScalar threeK = E/(1.0 - 2.0*nu); Switch planeStress(mechanicalProperties.lookup("planeStress")); if (planeStress) { lambda = nu*E/((1.0 + nu)*(1.0 - nu)); threeK = E/(1.0 - nu); } vectorField n = patch().nf(); const fvPatchTensorField& gradU = patch().lookupPatchField("grad(U)"); gradient() = ( (traction_ - pressure_*n)/rho.value() - (n & (mu.value()*gradU.T() - (mu + lambda).value()*gradU)) - n*tr(gradU)*lambda.value() )/(2.0*mu + lambda).value(); Switch thermalStress(thermalProperties.lookup("thermalStress")); if (thermalStress) { dimensionedScalar alpha(thermalProperties.lookup("alpha")); dimensionedScalar threeKalpha = threeK*alpha; const fvPatchScalarField& T = patch().lookupPatchField("T"); gradient() += n*threeKalpha.value()*T/(2.0*mu + lambda).value(); } fixedGradientFvPatchVectorField::updateCoeffs(); } // Write void tractionDisplacementFvPatchVectorField::write(Ostream& os) const { fvPatchVectorField::write(os); traction_.writeEntry("traction", os); pressure_.writeEntry("pressure", os); writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // makePatchTypeField(fvPatchVectorField, tractionDisplacementFvPatchVectorField); // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // ************************************************************************* //