DAMASK_EICMD/src/homogenization_thermal_pass...

19 lines
632 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
print'(/,1x,a)', '<<<+- homogenization:thermal:pass init -+>>>'
2021-04-06 15:25:30 +05:30
2022-02-19 23:26:41 +05:30
if (homogenization_Nconstituents(1) /= 1) &
2022-02-23 03:46:14 +05:30
call IO_error(211,ext_msg='(pass) with N_constituents !=1')
2022-02-19 23:26:41 +05:30
2021-04-06 15:25:30 +05:30
end subroutine pass_init
end submodule thermal_pass