236 lines
9.1 KiB
Fortran
236 lines
9.1 KiB
Fortran
!--------------------------------------------------------------------------------------------------
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
|
!> @brief Defines phase and homogenization
|
|
!--------------------------------------------------------------------------------------------------
|
|
module material
|
|
use prec
|
|
use config
|
|
use results
|
|
use math
|
|
use IO
|
|
use rotations
|
|
use discretization
|
|
use YAML_types
|
|
|
|
implicit none(type,external)
|
|
private
|
|
|
|
type, public :: tRotationContainer
|
|
type(tRotation), dimension(:), allocatable :: data
|
|
end type tRotationContainer
|
|
|
|
type, public :: tTensorContainer
|
|
real(pReal), dimension(:,:,:), allocatable :: data
|
|
end type tTensorContainer
|
|
|
|
|
|
type(tRotationContainer), dimension(:), allocatable, public, protected :: material_O_0
|
|
type(tTensorContainer), dimension(:), allocatable, public, protected :: material_V_e_0
|
|
|
|
integer, dimension(:), allocatable, public, protected :: &
|
|
homogenization_Nconstituents !< number of grains in each homogenization
|
|
integer, public, protected :: &
|
|
homogenization_maxNconstituents !< max number of grains in any homogenization
|
|
|
|
character(len=:), public, protected, allocatable, dimension(:) :: &
|
|
material_name_phase, & !< name of each phase
|
|
material_name_homogenization !< name of each homogenization
|
|
|
|
integer, dimension(:), allocatable, public, protected :: & ! (cell)
|
|
material_homogenizationID, & ! TODO: rename to material_ID_homogenization
|
|
material_homogenizationEntry ! TODO: rename to material_entry_homogenization
|
|
integer, dimension(:,:), allocatable, public, protected :: & ! (constituent,cell)
|
|
material_phaseID, & ! TODO: rename to material_ID_phase
|
|
material_phaseEntry ! TODO: rename to material_entry_phase
|
|
|
|
real(pReal), dimension(:,:), allocatable, public, protected :: &
|
|
material_v ! fraction
|
|
|
|
public :: &
|
|
material_init
|
|
|
|
contains
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
!> @brief Parse material configuration file (material.yaml).
|
|
!--------------------------------------------------------------------------------------------------
|
|
subroutine material_init(restart)
|
|
|
|
logical, intent(in) :: restart
|
|
|
|
|
|
print'(/,1x,a)', '<<<+- material init -+>>>'; flush(IO_STDOUT)
|
|
|
|
|
|
call parse()
|
|
print'(/,1x,a)', 'parsed material.yaml'
|
|
|
|
|
|
if (.not. restart) then
|
|
call results_openJobFile
|
|
call results_mapping_phase(material_phaseID,material_phaseEntry,material_name_phase)
|
|
call results_mapping_homogenization(material_homogenizationID,material_homogenizationEntry,material_name_homogenization)
|
|
call results_closeJobFile
|
|
end if
|
|
|
|
end subroutine material_init
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
!> @brief Parse material.yaml to get the global structure
|
|
!--------------------------------------------------------------------------------------------------
|
|
subroutine parse()
|
|
|
|
type(tList), pointer :: materials, & !> all materials
|
|
constituents !> all constituents of a material
|
|
type(tDict), pointer :: phases, & !> all phases
|
|
homogenizations, & !> all homogenizations
|
|
material, & !> material definition
|
|
constituent, & !> constituent definition
|
|
homogenization
|
|
|
|
class(tItem), pointer :: item
|
|
integer, dimension(:), allocatable :: &
|
|
counterPhase, &
|
|
counterHomogenization, &
|
|
ho_of
|
|
integer, dimension(:,:), allocatable :: ph_of
|
|
real(pReal), dimension(:,:), allocatable :: v_of
|
|
|
|
real(pReal) :: v
|
|
integer :: &
|
|
el, ip, &
|
|
ho, ph, &
|
|
co, ce, &
|
|
ma
|
|
|
|
|
|
materials => config_material%get_list('material')
|
|
phases => config_material%get_dict('phase')
|
|
homogenizations => config_material%get_dict('homogenization')
|
|
|
|
|
|
if (maxval(discretization_materialAt) > materials%length) &
|
|
call IO_error(155,ext_msg='More materials requested than found in material.yaml')
|
|
|
|
material_name_phase = phases%keys()
|
|
material_name_homogenization = homogenizations%keys()
|
|
|
|
allocate(homogenization_Nconstituents(homogenizations%length))
|
|
do ho=1, homogenizations%length
|
|
homogenization => homogenizations%get_dict(ho)
|
|
homogenization_Nconstituents(ho) = homogenization%get_asInt('N_constituents')
|
|
end do
|
|
homogenization_maxNconstituents = maxval(homogenization_Nconstituents)
|
|
|
|
allocate(material_v(homogenization_maxNconstituents,discretization_Ncells),source=0.0_pReal)
|
|
|
|
allocate(material_O_0(materials%length))
|
|
allocate(material_V_e_0(materials%length))
|
|
|
|
allocate(ho_of(materials%length))
|
|
allocate(ph_of(materials%length,homogenization_maxNconstituents),source=-1)
|
|
allocate( v_of(materials%length,homogenization_maxNconstituents),source=0.0_pReal)
|
|
|
|
! parse YAML structure
|
|
item => materials%first
|
|
do ma = 1, materials%length
|
|
material => item%node%asDict()
|
|
ho_of(ma) = homogenizations%index(material%get_asString('homogenization'))
|
|
constituents => material%get_list('constituents')
|
|
|
|
homogenization => homogenizations%get_dict(ho_of(ma))
|
|
if (constituents%length /= homogenization%get_asInt('N_constituents')) call IO_error(148)
|
|
|
|
allocate(material_O_0(ma)%data(constituents%length))
|
|
allocate(material_V_e_0(ma)%data(1:3,1:3,constituents%length))
|
|
|
|
do co = 1, constituents%length
|
|
constituent => constituents%get_dict(co)
|
|
v_of(ma,co) = constituent%get_asFloat('v')
|
|
ph_of(ma,co) = phases%index(constituent%get_asString('phase'))
|
|
|
|
call material_O_0(ma)%data(co)%fromQuaternion(constituent%get_as1dFloat('O',requiredSize=4))
|
|
material_V_e_0(ma)%data(1:3,1:3,co) = constituent%get_as2dFloat('V_e',defaultVal=math_I3,requiredShape=[3,3])
|
|
if (any(dNeq(material_V_e_0(ma)%data(1:3,1:3,co),transpose(material_V_e_0(ma)%data(1:3,1:3,co))))) &
|
|
call IO_error(147)
|
|
|
|
end do
|
|
if (dNeq(sum(v_of(ma,:)),1.0_pReal,1.e-9_pReal)) call IO_error(153,ext_msg='constituent')
|
|
|
|
item => item%next
|
|
end do
|
|
|
|
allocate(counterPhase(phases%length),source=0)
|
|
allocate(counterHomogenization(homogenizations%length),source=0)
|
|
|
|
allocate(material_homogenizationID(discretization_Ncells),source=0)
|
|
allocate(material_homogenizationEntry(discretization_Ncells),source=0)
|
|
|
|
allocate(material_phaseID(homogenization_maxNconstituents,discretization_Ncells),source=0)
|
|
allocate(material_phaseEntry(homogenization_maxNconstituents,discretization_Ncells),source=0)
|
|
|
|
|
|
! build mappings
|
|
do el = 1, discretization_Nelems
|
|
|
|
ma = discretization_materialAt(el)
|
|
ho = ho_of(ma)
|
|
|
|
do ip = 1, discretization_nIPs
|
|
ce = (el-1)*discretization_nIPs + ip
|
|
material_homogenizationID(ce) = ho
|
|
counterHomogenization(ho) = counterHomogenization(ho) + 1
|
|
material_homogenizationEntry(ce) = counterHomogenization(ho)
|
|
end do
|
|
|
|
do co = 1, size(ph_of(ma,:)>0)
|
|
|
|
v = v_of(ma,co)
|
|
ph = ph_of(ma,co)
|
|
|
|
do ip = 1, discretization_nIPs
|
|
ce = (el-1)*discretization_nIPs + ip
|
|
material_phaseID(co,ce) = ph
|
|
counterPhase(ph) = counterPhase(ph) + 1
|
|
material_phaseEntry(co,ce) = counterPhase(ph)
|
|
material_v(co,ce) = v
|
|
end do
|
|
|
|
end do
|
|
end do
|
|
|
|
end subroutine parse
|
|
|
|
|
|
#if defined (__GFORTRAN__)
|
|
!--------------------------------------------------------------------------------------------------
|
|
!> @brief %keys() is broken on gfortran
|
|
!--------------------------------------------------------------------------------------------------
|
|
function getKeys(dict)
|
|
|
|
type(tDict), intent(in) :: dict
|
|
character(len=:), dimension(:), allocatable :: getKeys
|
|
character(len=pStringLen), dimension(:), allocatable :: temp
|
|
|
|
integer :: i,l
|
|
|
|
allocate(temp(dict%length))
|
|
l = 0
|
|
do i=1, dict%length
|
|
temp(i) = dict%key(i)
|
|
l = max(len_trim(temp(i)),l)
|
|
end do
|
|
|
|
allocate(character(l)::getKeys(dict%length))
|
|
do i=1, dict%length
|
|
getKeys(i) = trim(temp(i))
|
|
end do
|
|
|
|
end function getKeys
|
|
#endif
|
|
|
|
end module material
|