You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/web/release-notes-1.2.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,12 @@ bibliography: bibliography.bib
21
21
Version 1.2 of `MFrontGenericInterfaceSupport` is compatible with the
22
22
Version 3.4 of `TFEL/MFront`.
23
23
24
+
# Known incompatibilities
25
+
26
+
The `stored_energies` and `dissipated_energies` are now automatically
27
+
allocated only of the behaviours by the `MaterialStateManager` class
28
+
only if the behaviours is able to compute them.
29
+
24
30
# New functionalities
25
31
26
32
## Orthotropic behaviours
@@ -121,6 +127,24 @@ module:
121
127
122
128
# Issues solved
123
129
130
+
## Issues #54: Inform the calling code about `@DissipatedEnergy` and/or `@InternalEnergy`
131
+
132
+
The `Behaviour` class now exposes two new boolean data members:
133
+
134
+
-`computesStoredEnergy`: if true, the behaviour computes the stored energy
135
+
-`computesDissipatedEnergy`: if false, the behaviour computes the dissipated energy
136
+
137
+
In the `C` bindings, the `mgis_bv_behaviour_computes_stored_energy` and `mgis_bv_behaviour_computes_dissipated_energy` functions are now available.
138
+
139
+
In the `fortran` bindings, the functions `behaviour_computes_stored_energy` and `behaviour_computes_dissipated_energy` are now available in the `mgis_behaviour` module.
140
+
141
+
In the `python` bindings, the `Behaviour` class now exposes two read only properties: `computesStoredEnergy` and `computesDissipatedEnergy`.
142
+
143
+
The `MaterialDataManager` constructor now only allocates the memory associated with the stored and disspated energies only if the behaviour computes those energies.
144
+
145
+
For details, see <https://github.com/thelfer/MFrontGenericInterfaceSupport/issues/54>
146
+
147
+
124
148
## Issue #33: Function for checking if the behaviour is a Finite Strain one
125
149
126
150
The `mgis::behaviour::isStandardFiniteStrainBehaviour` has been added to
0 commit comments