Interface RheoModel

All Known Implementing Classes:
RestrainedMaxwellModel

public interface RheoModel
Rheologisches Modell: Spannung in Abhängigkeit von der Zeit / der Temperatur.
Author:
Stefan
  • Method Details

    • stress

      double stress​(double t0, double t, double stress0) throws RheoModel.StressCalculationException
      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

      void setTemperatureFunction​(DifferentiableFunction regTSoll)