From b7b79a59c26c276af2148ace71e393ae18e5be6e Mon Sep 17 00:00:00 2001 From: Will Bainbridge Date: Wed, 30 Sep 2020 15:58:19 +0100 Subject: [PATCH] solidThermo: Removed unnecessary pure virtuals from implementation class --- .../solidThermo/solidThermo/solidThermo.H | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H index 4e76d9b412..2278e34998 100644 --- a/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H +++ b/src/thermophysicalModels/solidThermo/solidThermo/solidThermo.H @@ -201,25 +201,6 @@ public: //- Return non-const access to the local density field [kg/m^3] virtual volScalarField& rho(); - - //- Return true if thermal conductivity is isotropic - virtual bool isotropic() const = 0; - - //- Anisotropic thermal conductivity [W/m/K] - virtual tmp Kappa() const = 0; - - //- Anisotropic thermal conductivity for patch [W/m/K] - virtual tmp Kappa(const label patchi) const = 0; - - //- Anisotropic thermal conductivity for patch - // in the local coordinate system [W/m/K] - virtual tmp KappaLocal(const label patchi) const = 0; - - //- Return the heat flux - virtual tmp q() const = 0; - - //- Return the source term for the energy equation - virtual tmp divq(volScalarField& he) const = 0; };