Skip to content

Commit

Permalink
added function for Cv to anisotropic material
Browse files Browse the repository at this point in the history
  • Loading branch information
bobmyhill committed Mar 24, 2024
1 parent ddf58d6 commit cdfdf16
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions burnman/classes/anisotropicmineral.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,21 @@ def grueneisen_tensor(self):
/ self.molar_heat_capacity_p
)

@material_property
def molar_heat_capacity_v(self):
"""
:returns: The isochoric, hydrostatic heat capacity [J/K/mol].
:rtype: float
"""
return (
self.molar_heat_capacity_p
- self.molar_volume
* self.temperature
* self.thermal_expansivity
* self.thermal_expansivity
* self.isothermal_bulk_modulus_reuss
)

@material_property
def grueneisen_parameter(self):
"""
Expand Down

0 comments on commit cdfdf16

Please sign in to comment.