Skip to content

Commit

Permalink
Fixes for WError's
Browse files Browse the repository at this point in the history
  • Loading branch information
mnabideltares committed May 16, 2024
1 parent 06b93a9 commit 18493b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ class KRATOS_API(GEO_MECHANICS_APPLICATION) GeoThermalDispersionLaw : public Geo

explicit GeoThermalDispersionLaw(SizeType NumberOfDimensions);

~GeoThermalDispersionLaw() override = default;

GeoThermalLaw::Pointer Clone() const override;

Matrix CalculateThermalDispersionMatrix(const Properties& rProp, const ProcessInfo& rProcessInfo) const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ class KRATOS_API(GEO_MECHANICS_APPLICATION) GeoThermalFilterLaw : public GeoTher

explicit GeoThermalFilterLaw(SizeType NumberOfDimensions);

~GeoThermalFilterLaw() override = default;

GeoThermalLaw::Pointer Clone() const override;

Matrix CalculateThermalDispersionMatrix(const Properties& rProp, const ProcessInfo&) const override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ class KRATOS_API(GEO_MECHANICS_APPLICATION) GeoThermalLaw

GeoThermalLaw() {}

virtual ~GeoThermalLaw() = default;

virtual GeoThermalLaw::Pointer Clone() const = 0;

std::size_t WorkingSpaceDimension() const { return mNumberOfDimensions; }
Expand Down

0 comments on commit 18493b1

Please sign in to comment.