Interface RheoModel
- All Known Implementing Classes:
RestrainedMaxwellModel
public interface RheoModel
Rheologisches Modell: Spannung in Abhängigkeit von der Zeit / der Temperatur.
- Author:
- Stefan
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
RheoModel.StressCalculationException
-
Method Summary
Modifier and Type Method Description void
setTemperatureFunction(DifferentiableFunction regTSoll)
double
stress(double t0, double t, double stress0)
Berechnung der Spannung zum Zeitpunkt t.
-
Method Details
-
stress
Berechnung der Spannung zum Zeitpunkt t.- Parameters:
t0
- Anfangszeitpunkt.t
- Endzeitpunkt.stress0
- Anfangsspannung.- Returns:
- Spannung zum Zeitpunkt t.
- Throws:
RheoModel.StressCalculationException
- Exception, falls bei der Berechnung ein Fehler auftritt. (Implementierungen sollen jegliche bei der Berechnung auftretende Exceptions, die sie nicht behandeln können, in eine StressCalculationException verpacken.)
-
setTemperatureFunction
-