DAMASK_EICMD/src/homogenization_thermal_pass...

28 lines
755 B
Fortran
Raw Normal View History

2021-04-06 15:25:30 +05:30
!--------------------------------------------------------------------------------------------------
!> @author Martin Diehl, KU Leuven
!> @brief Dummy homogenization scheme for 1 constituent per material point
!--------------------------------------------------------------------------------------------------
submodule(homogenization:thermal) thermal_pass
2021-04-06 15:25:30 +05:30
contains
2021-04-11 19:02:17 +05:30
module subroutine pass_init()
2022-02-19 23:26:41 +05:30
2022-02-24 16:39:47 +05:30
integer :: &
ho
print'(/,1x,a)', '<<<+- homogenization:thermal:pass init -+>>>'
2021-04-06 15:25:30 +05:30
2022-02-24 16:39:47 +05:30
do ho = 1, size(thermal_type)
if (thermal_type(ho) /= THERMAL_PASS_ID) cycle
if (homogenization_Nconstituents(ho) /= 1) &
2022-02-24 16:39:47 +05:30
call IO_error(211,ext_msg='(pass) with N_constituents !=1')
end do
2022-02-19 23:26:41 +05:30
2021-04-06 15:25:30 +05:30
end subroutine pass_init
end submodule thermal_pass