2021-04-06 15:25:30 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Martin Diehl, KU Leuven
|
|
|
|
!> @brief Dummy homogenization scheme for 1 constituent per material point
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-04-06 15:35:47 +05:30
|
|
|
submodule(homogenization:damage) damage_pass
|
2021-04-06 15:25:30 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
2021-04-11 19:02:17 +05:30
|
|
|
module subroutine pass_init()
|
2022-02-23 10:03:30 +05:30
|
|
|
|
2021-11-15 23:05:44 +05:30
|
|
|
print'(/,1x,a)', '<<<+- homogenization:damage:pass init -+>>>'
|
2021-04-06 15:25:30 +05:30
|
|
|
|
2022-02-23 10:03:30 +05:30
|
|
|
if (homogenization_Nconstituents(1) /= 1) & !ToDo: needs extension to multiple homogenizations
|
|
|
|
call IO_error(211,ext_msg='(pass) with N_constituents !=1')
|
|
|
|
|
2021-04-06 15:25:30 +05:30
|
|
|
end subroutine pass_init
|
|
|
|
|
2021-04-06 15:35:47 +05:30
|
|
|
end submodule damage_pass
|