MarmotMaterialMechanical.h
Go to the documentation of this file.
1 /* ---------------------------------------------------------------------
2  * _
3  * _ __ ___ __ _ _ __ _ __ ___ ___ | |_
4  * | '_ ` _ \ / _` | '__| '_ ` _ \ / _ \| __|
5  * | | | | | | (_| | | | | | | | | (_) | |_
6  * |_| |_| |_|\__,_|_| |_| |_| |_|\___/ \__|
7  *
8  * Unit of Strength of Materials and Structural Analysis
9  * University of Innsbruck,
10  * 2020 - today
11  *
12  * festigkeitslehre@uibk.ac.at
13  *
14  * Matthias Neuner matthias.neuner@uibk.ac.at
15  *
16  * This file is part of the MAteRialMOdellingToolbox (marmot).
17  *
18  * This library is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU Lesser General Public
20  * License as published by the Free Software Foundation; either
21  * version 2.1 of the License, or (at your option) any later version.
22  *
23  * The full text of the license can be found in the file LICENSE.md at
24  * the top level directory of marmot.
25  * ---------------------------------------------------------------------
26  */
27 
28 #pragma once
29 #include "Marmot/MarmotMaterial.h"
30 
54 
55 public:
57 
58  virtual void computeStress( double* stress,
59  double* dStress_dFNew,
60  const double* FOld,
61  const double* FNew,
62  const double* timeOld,
63  const double dT,
64  double& pNewDT ) = 0;
65 
66  virtual void computePlaneStress( double* stress2D,
67  double* dStress_dF2DNew,
68  const double* FOld2D,
69  const double* FNew2D,
70  const double* timeOld,
71  const double dT,
72  double& pNewDT );
73 
74  virtual void computeUniaxialStress( double* stress1D,
75  double* dStress1D_dF1DNew,
76  const double* F1DOld,
77  const double* F1DNew,
78  const double* timeOld,
79  const double dT,
80  double& pNewDT );
81 };
MarmotMaterial::MarmotMaterial
MarmotMaterial(const double *materialProperties, int nMaterialProperties, int materialNumber)
MarmotMaterialMechanical::computePlaneStress
virtual void computePlaneStress(double *stress2D, double *dStress_dF2DNew, const double *FOld2D, const double *FNew2D, const double *timeOld, const double dT, double &pNewDT)
Definition: MarmotMaterialMechanical.cpp:26
MarmotMaterialMechanical::computeStress
virtual void computeStress(double *stress, double *dStress_dFNew, const double *FOld, const double *FNew, const double *timeOld, const double dT, double &pNewDT)=0
MarmotMaterialMechanical::computeUniaxialStress
virtual void computeUniaxialStress(double *stress1D, double *dStress1D_dF1DNew, const double *F1DOld, const double *F1DNew, const double *timeOld, const double dT, double &pNewDT)
Definition: MarmotMaterialMechanical.cpp:106
MarmotMaterial
Definition: MarmotMaterial.h:32
MarmotMaterialMechanical
Definition: MarmotMaterialMechanical.h:53
MarmotMaterial.h