homogenization output active
This commit is contained in:
parent
badfba8c6f
commit
2f27c64c39
|
@ -913,6 +913,7 @@ end function postResults
|
||||||
subroutine homogenization_results
|
subroutine homogenization_results
|
||||||
#if defined(PETSc) || defined(DAMASK_HDF5)
|
#if defined(PETSc) || defined(DAMASK_HDF5)
|
||||||
use results
|
use results
|
||||||
|
use homogenization_mech_RGC
|
||||||
use HDF5_utilities
|
use HDF5_utilities
|
||||||
use config, only: &
|
use config, only: &
|
||||||
config_name_homogenization => homogenization_name ! anticipate logical name
|
config_name_homogenization => homogenization_name ! anticipate logical name
|
||||||
|
@ -932,7 +933,8 @@ subroutine homogenization_results
|
||||||
|
|
||||||
call HDF5_closeGroup(results_addGroup(group))
|
call HDF5_closeGroup(results_addGroup(group))
|
||||||
select case(material_homogenization_type(p))
|
select case(material_homogenization_type(p))
|
||||||
|
case(HOMOGENIZATION_rgc_ID)
|
||||||
|
call mech_RGC_results(homogenization_typeInstance(p),group)
|
||||||
end select
|
end select
|
||||||
|
|
||||||
enddo
|
enddo
|
||||||
|
|
|
@ -76,7 +76,8 @@ module homogenization_mech_RGC
|
||||||
homogenization_RGC_partitionDeformation, &
|
homogenization_RGC_partitionDeformation, &
|
||||||
homogenization_RGC_averageStressAndItsTangent, &
|
homogenization_RGC_averageStressAndItsTangent, &
|
||||||
homogenization_RGC_updateState, &
|
homogenization_RGC_updateState, &
|
||||||
homogenization_RGC_postResults
|
homogenization_RGC_postResults, &
|
||||||
|
mech_RGC_results ! name suited for planned submodule situation
|
||||||
private :: &
|
private :: &
|
||||||
relaxationVector, &
|
relaxationVector, &
|
||||||
interfaceNormal, &
|
interfaceNormal, &
|
||||||
|
|
Loading…
Reference in New Issue