dummy HDF5 output for all plasticity laws
This commit is contained in:
parent
8f736f2843
commit
34660599a1
|
@ -1118,17 +1118,48 @@ subroutine constitutive_results()
|
||||||
use material, only: &
|
use material, only: &
|
||||||
phase_plasticityInstance, &
|
phase_plasticityInstance, &
|
||||||
material_phase_plasticity_type => phase_plasticity
|
material_phase_plasticity_type => phase_plasticity
|
||||||
|
|
||||||
|
use plastic_isotropic, only: &
|
||||||
|
plastic_isotropic_results
|
||||||
use plastic_phenopowerlaw, only: &
|
use plastic_phenopowerlaw, only: &
|
||||||
plastic_phenopowerlaw_results
|
plastic_phenopowerlaw_results
|
||||||
|
use plastic_kinehardening, only: &
|
||||||
|
plastic_kinehardening_results
|
||||||
|
use plastic_dislotwin, only: &
|
||||||
|
plastic_dislotwin_results
|
||||||
|
use plastic_disloUCLA, only: &
|
||||||
|
plastic_disloUCLA_results
|
||||||
|
use plastic_nonlocal, only: &
|
||||||
|
plastic_nonlocal_results
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
integer(pInt) :: p
|
integer :: p
|
||||||
call HDF5_closeGroup(results_addGroup('current/phase'))
|
call HDF5_closeGroup(results_addGroup('current/phase'))
|
||||||
do p=1,size(config_name_phase)
|
do p=1,size(config_name_phase)
|
||||||
call HDF5_closeGroup(results_addGroup('current/phase/'//trim(config_name_phase(p))))
|
call HDF5_closeGroup(results_addGroup('current/phase/'//trim(config_name_phase(p))))
|
||||||
if (material_phase_plasticity_type(p) == PLASTICITY_PHENOPOWERLAW_ID) then
|
|
||||||
|
select case(material_phase_plasticity_type(p))
|
||||||
|
|
||||||
|
case(PLASTICITY_ISOTROPIC_ID)
|
||||||
|
call plastic_isotropic_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
|
|
||||||
|
case(PLASTICITY_PHENOPOWERLAW_ID)
|
||||||
call plastic_phenopowerlaw_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
call plastic_phenopowerlaw_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
endif
|
|
||||||
|
case(PLASTICITY_KINEHARDENING_ID)
|
||||||
|
call plastic_kinehardening_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
|
|
||||||
|
case(PLASTICITY_DISLOTWIN_ID)
|
||||||
|
call plastic_dislotwin_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
|
|
||||||
|
case(PLASTICITY_DISLOUCLA_ID)
|
||||||
|
call plastic_disloUCLA_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
|
|
||||||
|
case(PLASTICITY_NONLOCAL_ID)
|
||||||
|
call plastic_nonlocal_results(phase_plasticityInstance(p),'current/phase/'//trim(config_name_phase(p)))
|
||||||
|
|
||||||
|
end select
|
||||||
|
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -102,7 +102,8 @@ module plastic_disloUCLA
|
||||||
plastic_disloUCLA_dependentState, &
|
plastic_disloUCLA_dependentState, &
|
||||||
plastic_disloUCLA_LpAndItsTangent, &
|
plastic_disloUCLA_LpAndItsTangent, &
|
||||||
plastic_disloUCLA_dotState, &
|
plastic_disloUCLA_dotState, &
|
||||||
plastic_disloUCLA_postResults
|
plastic_disloUCLA_postResults, &
|
||||||
|
plastic_disloUCLA_results
|
||||||
private :: &
|
private :: &
|
||||||
kinetics
|
kinetics
|
||||||
|
|
||||||
|
@ -561,6 +562,32 @@ function plastic_disloUCLA_postResults(Mp,Temperature,instance,of) result(postRe
|
||||||
end function plastic_disloUCLA_postResults
|
end function plastic_disloUCLA_postResults
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief writes results to HDF5 output file
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine plastic_disloUCLA_results(instance,group)
|
||||||
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
||||||
|
use results
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
integer :: o
|
||||||
|
|
||||||
|
associate(prm => param(instance), stt => state(instance))
|
||||||
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
select case(prm%outputID(o))
|
||||||
|
end select
|
||||||
|
enddo outputsLoop
|
||||||
|
end associate
|
||||||
|
#else
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
#endif
|
||||||
|
|
||||||
|
end subroutine plastic_disloUCLA_results
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief Shear rates on slip systems, their derivatives with respect to resolved stress and the
|
!> @brief Shear rates on slip systems, their derivatives with respect to resolved stress and the
|
||||||
! resolved stresss
|
! resolved stresss
|
||||||
|
|
|
@ -168,7 +168,8 @@ module plastic_dislotwin
|
||||||
plastic_dislotwin_dependentState, &
|
plastic_dislotwin_dependentState, &
|
||||||
plastic_dislotwin_LpAndItsTangent, &
|
plastic_dislotwin_LpAndItsTangent, &
|
||||||
plastic_dislotwin_dotState, &
|
plastic_dislotwin_dotState, &
|
||||||
plastic_dislotwin_postResults
|
plastic_dislotwin_postResults, &
|
||||||
|
plastic_dislotwin_results
|
||||||
private :: &
|
private :: &
|
||||||
kinetics_slip, &
|
kinetics_slip, &
|
||||||
kinetics_twin, &
|
kinetics_twin, &
|
||||||
|
@ -1088,6 +1089,32 @@ function plastic_dislotwin_postResults(Mp,Temperature,instance,of) result(postRe
|
||||||
end function plastic_dislotwin_postResults
|
end function plastic_dislotwin_postResults
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief writes results to HDF5 output file
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine plastic_dislotwin_results(instance,group)
|
||||||
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
||||||
|
use results
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
integer :: o
|
||||||
|
|
||||||
|
associate(prm => param(instance), stt => state(instance))
|
||||||
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
select case(prm%outputID(o))
|
||||||
|
end select
|
||||||
|
enddo outputsLoop
|
||||||
|
end associate
|
||||||
|
#else
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
#endif
|
||||||
|
|
||||||
|
end subroutine plastic_dislotwin_results
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief Shear rates on slip systems, their derivatives with respect to resolved stress and the
|
!> @brief Shear rates on slip systems, their derivatives with respect to resolved stress and the
|
||||||
! resolved stresss
|
! resolved stresss
|
||||||
|
|
|
@ -68,7 +68,8 @@ module plastic_isotropic
|
||||||
plastic_isotropic_LpAndItsTangent, &
|
plastic_isotropic_LpAndItsTangent, &
|
||||||
plastic_isotropic_LiAndItsTangent, &
|
plastic_isotropic_LiAndItsTangent, &
|
||||||
plastic_isotropic_dotState, &
|
plastic_isotropic_dotState, &
|
||||||
plastic_isotropic_postResults
|
plastic_isotropic_postResults, &
|
||||||
|
plastic_isotropic_results
|
||||||
|
|
||||||
contains
|
contains
|
||||||
|
|
||||||
|
@ -482,4 +483,30 @@ function plastic_isotropic_postResults(Mp,instance,of) result(postResults)
|
||||||
end function plastic_isotropic_postResults
|
end function plastic_isotropic_postResults
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief writes results to HDF5 output file
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine plastic_isotropic_results(instance,group)
|
||||||
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
||||||
|
use results
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
integer :: o
|
||||||
|
|
||||||
|
associate(prm => param(instance), stt => state(instance))
|
||||||
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
select case(prm%outputID(o))
|
||||||
|
end select
|
||||||
|
enddo outputsLoop
|
||||||
|
end associate
|
||||||
|
#else
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
#endif
|
||||||
|
|
||||||
|
end subroutine plastic_isotropic_results
|
||||||
|
|
||||||
|
|
||||||
end module plastic_isotropic
|
end module plastic_isotropic
|
||||||
|
|
|
@ -83,7 +83,8 @@ module plastic_kinehardening
|
||||||
plastic_kinehardening_LpAndItsTangent, &
|
plastic_kinehardening_LpAndItsTangent, &
|
||||||
plastic_kinehardening_dotState, &
|
plastic_kinehardening_dotState, &
|
||||||
plastic_kinehardening_deltaState, &
|
plastic_kinehardening_deltaState, &
|
||||||
plastic_kinehardening_postResults
|
plastic_kinehardening_postResults, &
|
||||||
|
plastic_kinehardening_results
|
||||||
private :: &
|
private :: &
|
||||||
kinetics
|
kinetics
|
||||||
|
|
||||||
|
@ -548,6 +549,32 @@ function plastic_kinehardening_postResults(Mp,instance,of) result(postResults)
|
||||||
end function plastic_kinehardening_postResults
|
end function plastic_kinehardening_postResults
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief writes results to HDF5 output file
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine plastic_kinehardening_results(instance,group)
|
||||||
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
||||||
|
use results
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
integer :: o
|
||||||
|
|
||||||
|
associate(prm => param(instance), stt => state(instance))
|
||||||
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
select case(prm%outputID(o))
|
||||||
|
end select
|
||||||
|
enddo outputsLoop
|
||||||
|
end associate
|
||||||
|
#else
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
#endif
|
||||||
|
|
||||||
|
end subroutine plastic_kinehardening_results
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief calculates shear rates on slip systems and derivatives with respect to resolved stress
|
!> @brief calculates shear rates on slip systems and derivatives with respect to resolved stress
|
||||||
!> @details: Shear rates are calculated only optionally.
|
!> @details: Shear rates are calculated only optionally.
|
||||||
|
|
|
@ -222,7 +222,8 @@ module plastic_nonlocal
|
||||||
plastic_nonlocal_dotState, &
|
plastic_nonlocal_dotState, &
|
||||||
plastic_nonlocal_deltaState, &
|
plastic_nonlocal_deltaState, &
|
||||||
plastic_nonlocal_updateCompatibility, &
|
plastic_nonlocal_updateCompatibility, &
|
||||||
plastic_nonlocal_postResults
|
plastic_nonlocal_postResults, &
|
||||||
|
plastic_nonlocal_results
|
||||||
|
|
||||||
private :: &
|
private :: &
|
||||||
plastic_nonlocal_kinetics
|
plastic_nonlocal_kinetics
|
||||||
|
@ -2558,4 +2559,30 @@ enddo outputsLoop
|
||||||
end associate
|
end associate
|
||||||
end function plastic_nonlocal_postResults
|
end function plastic_nonlocal_postResults
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief writes results to HDF5 output file
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine plastic_nonlocal_results(instance,group)
|
||||||
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
||||||
|
use results
|
||||||
|
|
||||||
|
implicit none
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
integer :: o
|
||||||
|
|
||||||
|
associate(prm => param(instance), stt => state(instance))
|
||||||
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
select case(prm%outputID(o))
|
||||||
|
end select
|
||||||
|
enddo outputsLoop
|
||||||
|
end associate
|
||||||
|
#else
|
||||||
|
integer, intent(in) :: instance
|
||||||
|
character(len=*) :: group
|
||||||
|
#endif
|
||||||
|
|
||||||
|
end subroutine plastic_nonlocal_results
|
||||||
|
|
||||||
end module plastic_nonlocal
|
end module plastic_nonlocal
|
||||||
|
|
|
@ -575,9 +575,9 @@ subroutine plastic_phenopowerlaw_results(instance,group)
|
||||||
use results
|
use results
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
integer(pInt), intent(in) :: instance
|
integer, intent(in) :: instance
|
||||||
character(len=*) :: group
|
character(len=*) :: group
|
||||||
integer(pInt) :: o
|
integer :: o
|
||||||
|
|
||||||
associate(prm => param(instance), stt => state(instance))
|
associate(prm => param(instance), stt => state(instance))
|
||||||
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
||||||
|
@ -590,7 +590,7 @@ subroutine plastic_phenopowerlaw_results(instance,group)
|
||||||
enddo outputsLoop
|
enddo outputsLoop
|
||||||
end associate
|
end associate
|
||||||
#else
|
#else
|
||||||
integer(pInt), intent(in) :: instance
|
integer, intent(in) :: instance
|
||||||
character(len=*) :: group
|
character(len=*) :: group
|
||||||
#endif
|
#endif
|
||||||
end subroutine plastic_phenopowerlaw_results
|
end subroutine plastic_phenopowerlaw_results
|
||||||
|
|
Loading…
Reference in New Issue