names follow structure

This commit is contained in:
Martin Diehl 2020-12-31 08:00:20 +01:00
parent 92ec10b251
commit ebc4f671c8
3 changed files with 6 additions and 6 deletions

View File

@ -33,8 +33,8 @@
#include "constitutive_plastic_disloTungsten.f90"
#include "constitutive_plastic_nonlocal.f90"
#include "constitutive_thermal.f90"
#include "source_thermal_dissipation.f90"
#include "source_thermal_externalheat.f90"
#include "constitutive_thermal_dissipation.f90"
#include "constitutive_thermal_externalheat.f90"
#include "kinematics_thermal_expansion.f90"
#include "constitutive_damage.f90"
#include "source_damage_isoBrittle.f90"

View File

@ -4,7 +4,7 @@
!> @brief material subroutine for thermal source due to plastic dissipation
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(constitutive:constitutive_thermal) source_thermal_dissipation
submodule(constitutive:constitutive_thermal) source_dissipation
integer, dimension(:), allocatable :: &
source_thermal_dissipation_offset, & !< which source is my current thermal dissipation mechanism?
@ -96,4 +96,4 @@ module subroutine source_thermal_dissipation_getRateAndItsTangent(TDot, dTDot_dT
end subroutine source_thermal_dissipation_getRateAndItsTangent
end submodule source_thermal_dissipation
end submodule source_dissipation

View File

@ -4,7 +4,7 @@
!> @author Philip Eisenlohr, Michigan State University
!> @brief material subroutine for variable heat source
!--------------------------------------------------------------------------------------------------
submodule(constitutive:constitutive_thermal) source_thermal_externalheat
submodule(constitutive:constitutive_thermal) source_externalheat
integer, dimension(:), allocatable :: &
@ -135,4 +135,4 @@ module subroutine source_thermal_externalheat_getRateAndItsTangent(TDot, dTDot_d
end subroutine source_thermal_externalheat_getRateAndItsTangent
end submodule source_thermal_externalheat
end submodule source_externalheat