NuTo
Numerics Tool
DamageLaw.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace NuTo
4 {
5 namespace Constitutive
6 {
7 
9 class DamageLaw
10 {
11 public:
15  virtual double Damage(double kappa) const = 0;
16 
20  virtual double Derivative(double kappa) const = 0;
21 };
22 } /* Constitutive */
23 } /* NuTo */
virtual double Derivative(double kappa) const =0
calculates the derivative of the damage with respect to the history variable kappa ...
virtual double Damage(double kappa) const =0
calculates the damage for a given history variable kappa
Definition: Exception.h:6
interface for common damage laws
Definition: DamageLaw.h:9