|
|
|
@ -21,25 +21,28 @@
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
|
!! Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
|
!> @brief Parses material.config
|
|
|
|
|
!> @brief Parses material config file, either solverJobName.materialConfig or material.config
|
|
|
|
|
!> @details reads the material configuration file, where solverJobName.materialConfig takes
|
|
|
|
|
!! precedence over material.config and parses the sections 'homogenization', 'crystallite',
|
|
|
|
|
!! 'phase', 'texture', and 'microstucture'
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
module material
|
|
|
|
|
|
|
|
|
|
use prec, only: pReal, &
|
|
|
|
|
use prec, only: &
|
|
|
|
|
pReal, &
|
|
|
|
|
pInt
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
private
|
|
|
|
|
character(len=64), parameter, public :: &
|
|
|
|
|
material_configFile = 'material.config', &
|
|
|
|
|
material_localFileExt = 'materialConfig'
|
|
|
|
|
material_configFile = 'material.config', & !> generic name for material configuration file
|
|
|
|
|
material_localFileExt = 'materialConfig' !> extension of solver job name depending material configuration file
|
|
|
|
|
|
|
|
|
|
character(len=32), parameter, public :: &
|
|
|
|
|
material_partHomogenization = 'homogenization', &
|
|
|
|
|
material_partCrystallite = 'crystallite', &
|
|
|
|
|
material_partPhase = 'phase'
|
|
|
|
|
material_partHomogenization = 'homogenization', & !> keyword for homogenization part
|
|
|
|
|
material_partCrystallite = 'crystallite', & !> keyword for crystallite part
|
|
|
|
|
material_partPhase = 'phase' !> keyword for phase part
|
|
|
|
|
|
|
|
|
|
character(len=64), dimension(:), allocatable, public :: &
|
|
|
|
|
character(len=64), dimension(:), allocatable, public, protected :: &
|
|
|
|
|
phase_elasticity, & !> elasticity of each phase
|
|
|
|
|
phase_plasticity, & !> plasticity of each phase
|
|
|
|
|
phase_name, & !> name of each phase
|
|
|
|
@ -47,14 +50,14 @@ module material
|
|
|
|
|
homogenization_type, & !> type of each homogenization
|
|
|
|
|
crystallite_name !> name of each crystallite setting
|
|
|
|
|
|
|
|
|
|
integer(pInt), public :: &
|
|
|
|
|
integer(pInt), public, protected :: &
|
|
|
|
|
homogenization_maxNgrains, & !> max number of grains in any USED homogenization
|
|
|
|
|
material_Nphase, & !> number of phases
|
|
|
|
|
material_Nhomogenization, & !> number of homogenizations
|
|
|
|
|
material_Nmicrostructure, & !> number of microstructures
|
|
|
|
|
material_Ncrystallite !> number of crystallite settings
|
|
|
|
|
|
|
|
|
|
integer(pInt), dimension(:), allocatable, public :: &
|
|
|
|
|
integer(pInt), dimension(:), allocatable, public, protected :: &
|
|
|
|
|
homogenization_Ngrains, & !> number of grains in each homogenization
|
|
|
|
|
homogenization_Noutput, & !> number of '(output)' items per homogenization
|
|
|
|
|
phase_Noutput, & !> number of '(output)' items per phase
|
|
|
|
@ -64,22 +67,23 @@ module material
|
|
|
|
|
homogenization_typeInstance, & !> instance of particular type of each homogenization
|
|
|
|
|
microstructure_crystallite !> crystallite setting ID of each microstructure
|
|
|
|
|
|
|
|
|
|
integer(pInt), dimension(:,:,:), allocatable, public :: &
|
|
|
|
|
material_phase, & !> phase (index) of each grain,IP,element
|
|
|
|
|
integer(pInt), dimension(:,:,:), allocatable, public:: &
|
|
|
|
|
material_phase !> phase (index) of each grain,IP,element
|
|
|
|
|
integer(pInt), dimension(:,:,:), allocatable, public, protected :: &
|
|
|
|
|
material_texture !> texture (index) of each grain,IP,element
|
|
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable, public :: &
|
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable, public, protected :: &
|
|
|
|
|
material_EulerAngles !> initial orientation of each grain,IP,element
|
|
|
|
|
|
|
|
|
|
logical, dimension(:), allocatable, public :: &
|
|
|
|
|
logical, dimension(:), allocatable, public, protected :: &
|
|
|
|
|
microstructure_active, &
|
|
|
|
|
microstructure_elemhomo, & !> flag to indicate homogeneous microstructure distribution over element's IPs
|
|
|
|
|
phase_localPlasticity !> flags phases with local constitutive law
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
character(len=32), parameter, private :: &
|
|
|
|
|
material_partMicrostructure = 'microstructure', &
|
|
|
|
|
material_partTexture = 'texture'
|
|
|
|
|
material_partMicrostructure = 'microstructure', & !> keyword for microstructure part
|
|
|
|
|
material_partTexture = 'texture' !> keyword for texture part
|
|
|
|
|
|
|
|
|
|
character(len=64), dimension(:), allocatable, private :: &
|
|
|
|
|
microstructure_name, & !> name of each microstructure
|
|
|
|
@ -107,7 +111,7 @@ module material
|
|
|
|
|
real(pReal), dimension(:,:), allocatable, private :: &
|
|
|
|
|
microstructure_fraction !> vol fraction of each constituent in microstructure
|
|
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:), allocatable :: &
|
|
|
|
|
real(pReal), dimension(:,:,:), allocatable, private :: &
|
|
|
|
|
material_volume, & !> volume of each grain,IP,element
|
|
|
|
|
texture_Gauss, & !> data of each Gauss component
|
|
|
|
|
texture_Fiber !> data of each Fiber component
|
|
|
|
@ -118,69 +122,65 @@ module material
|
|
|
|
|
|
|
|
|
|
public :: material_init
|
|
|
|
|
|
|
|
|
|
private :: material_parseHomogenization, &
|
|
|
|
|
material_parseMicrostructure, &
|
|
|
|
|
material_parseCrystallite, &
|
|
|
|
|
material_parsePhase, &
|
|
|
|
|
material_parseTexture, &
|
|
|
|
|
material_populateGrains
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
subroutine material_init
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!* Module initialization *
|
|
|
|
|
!**************************************
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses material configuration file
|
|
|
|
|
!> @details figures out if solverJobName.materialConfig is present, if not looks for
|
|
|
|
|
!> material.config
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_init
|
|
|
|
|
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
|
|
|
|
|
use IO, only: IO_error, &
|
|
|
|
|
use IO, only: &
|
|
|
|
|
IO_error, &
|
|
|
|
|
IO_open_file, &
|
|
|
|
|
IO_open_jobFile_stat
|
|
|
|
|
use debug, only: debug_level, &
|
|
|
|
|
use debug, only: &
|
|
|
|
|
debug_level, &
|
|
|
|
|
debug_material, &
|
|
|
|
|
debug_levelBasic, &
|
|
|
|
|
debug_levelExtensive
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
|
|
integer(pInt), parameter :: fileunit = 200_pInt
|
|
|
|
|
integer(pInt) :: i,j, myDebug
|
|
|
|
|
|
|
|
|
|
myDebug = debug_level(debug_material)
|
|
|
|
|
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*)
|
|
|
|
|
write(6,*) '<<<+- material init -+>>>'
|
|
|
|
|
write(6,*) '$Id$'
|
|
|
|
|
write(6,'(/,a)') ' <<<+- material init -+>>>'
|
|
|
|
|
write(6,'(a)') ' $Id$'
|
|
|
|
|
#include "compilation_info.f90"
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (.not. IO_open_jobFile_stat(fileunit,material_localFileExt)) then ! no local material configuration present...
|
|
|
|
|
call IO_open_file(fileunit,material_configFile) ! ...open material.config file
|
|
|
|
|
endif
|
|
|
|
|
call material_parseHomogenization(fileunit,material_partHomogenization)
|
|
|
|
|
if (iand(myDebug,debug_levelBasic) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*) 'Homogenization parsed'
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
call material_parseMicrostructure(fileunit,material_partMicrostructure)
|
|
|
|
|
if (iand(myDebug,debug_levelBasic) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*) 'Microstructure parsed'
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
call material_parseCrystallite(fileunit,material_partCrystallite)
|
|
|
|
|
if (iand(myDebug,debug_levelBasic) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*) 'Crystallite parsed'
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
call material_parseTexture(fileunit,material_partTexture)
|
|
|
|
|
if (iand(myDebug,debug_levelBasic) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*) 'Texture parsed'
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
call material_parsePhase(fileunit,material_partPhase)
|
|
|
|
|
if (iand(myDebug,debug_levelBasic) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*) 'Phase parsed'
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
close(fileunit)
|
|
|
|
|
|
|
|
|
@ -193,18 +193,13 @@ subroutine material_init
|
|
|
|
|
maxval(microstructure_texture(1:microstructure_Nconstituents(i),i)) > material_Ntexture) call IO_error(152_pInt,i)
|
|
|
|
|
if (abs(sum(microstructure_fraction(:,i)) - 1.0_pReal) >= 1.0e-10_pReal) then
|
|
|
|
|
if (iand(myDebug,debug_levelExtensive) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*)'sum of microstructure fraction = ',sum(microstructure_fraction(:,i))
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
call IO_error(153_pInt,i)
|
|
|
|
|
endif
|
|
|
|
|
enddo
|
|
|
|
|
if (iand(myDebug,debug_levelExtensive) /= 0_pInt) then
|
|
|
|
|
!$OMP CRITICAL (write2out)
|
|
|
|
|
write(6,*)
|
|
|
|
|
write(6,*) 'MATERIAL configuration'
|
|
|
|
|
write(6,*)
|
|
|
|
|
write(6,'(/,a,/)') ' MATERIAL configuration'
|
|
|
|
|
write(6,'(a32,1x,a16,1x,a6)') 'homogenization ','type ','grains'
|
|
|
|
|
do i = 1_pInt,material_Nhomogenization
|
|
|
|
|
write(6,'(1x,a32,1x,a16,1x,i4)') homogenization_name(i),homogenization_type(i),homogenization_Ngrains(i)
|
|
|
|
@ -225,7 +220,6 @@ subroutine material_init
|
|
|
|
|
write(6,*)
|
|
|
|
|
endif
|
|
|
|
|
enddo
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
call material_populateGrains
|
|
|
|
@ -233,12 +227,13 @@ subroutine material_init
|
|
|
|
|
end subroutine material_init
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses the homogenization part in the material configuration file
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_parseHomogenization(myFile,myPart)
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use IO
|
|
|
|
|
use mesh, only: mesh_element
|
|
|
|
|
use mesh, only: &
|
|
|
|
|
mesh_element
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
character(len=*), intent(in) :: myPart
|
|
|
|
@ -307,12 +302,14 @@ subroutine material_parseHomogenization(myFile,myPart)
|
|
|
|
|
end subroutine material_parseHomogenization
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses the microstructure part in the material configuration file
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_parseMicrostructure(myFile,myPart)
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use IO
|
|
|
|
|
use mesh, only: mesh_element, mesh_NcpElems
|
|
|
|
|
use mesh, only: &
|
|
|
|
|
mesh_element, &
|
|
|
|
|
mesh_NcpElems
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
character(len=*), intent(in) :: myPart
|
|
|
|
@ -344,9 +341,12 @@ subroutine material_parseMicrostructure(myFile,myPart)
|
|
|
|
|
microstructure_maxNconstituents = maxval(microstructure_Nconstituents)
|
|
|
|
|
microstructure_elemhomo = IO_spotTagInPart(myFile,myPart,'/elementhomogeneous/',Nsections)
|
|
|
|
|
|
|
|
|
|
allocate(microstructure_phase (microstructure_maxNconstituents,Nsections)); microstructure_phase = 0_pInt
|
|
|
|
|
allocate(microstructure_texture (microstructure_maxNconstituents,Nsections)); microstructure_texture = 0_pInt
|
|
|
|
|
allocate(microstructure_fraction(microstructure_maxNconstituents,Nsections)); microstructure_fraction = 0.0_pReal
|
|
|
|
|
allocate(microstructure_phase (microstructure_maxNconstituents,Nsections))
|
|
|
|
|
microstructure_phase = 0_pInt
|
|
|
|
|
allocate(microstructure_texture (microstructure_maxNconstituents,Nsections))
|
|
|
|
|
microstructure_texture = 0_pInt
|
|
|
|
|
allocate(microstructure_fraction(microstructure_maxNconstituents,Nsections))
|
|
|
|
|
microstructure_fraction = 0.0_pReal
|
|
|
|
|
|
|
|
|
|
rewind(myFile)
|
|
|
|
|
line = ''
|
|
|
|
@ -393,11 +393,12 @@ subroutine material_parseMicrostructure(myFile,myPart)
|
|
|
|
|
100 end subroutine material_parseMicrostructure
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses the crystallite part in the material configuration file
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_parseCrystallite(myFile,myPart)
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use IO, only: IO_countSections, &
|
|
|
|
|
use IO, only: &
|
|
|
|
|
IO_countSections, &
|
|
|
|
|
IO_error, &
|
|
|
|
|
IO_countTagInPart, &
|
|
|
|
|
IO_globalTagInPart, &
|
|
|
|
@ -448,10 +449,10 @@ subroutine material_parseCrystallite(myFile,myPart)
|
|
|
|
|
100 end subroutine material_parseCrystallite
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses the phase part in the material configuration file
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_parsePhase(myFile,myPart)
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use IO
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
@ -524,12 +525,14 @@ subroutine material_parsePhase(myFile,myPart)
|
|
|
|
|
100 end subroutine material_parsePhase
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief parses the texture part in the material configuration file
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_parseTexture(myFile,myPart)
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use IO
|
|
|
|
|
use math, only: inRad, math_sampleRandomOri
|
|
|
|
|
use math, only: &
|
|
|
|
|
inRad, &
|
|
|
|
|
math_sampleRandomOri
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
character(len=*), intent(in) :: myPart
|
|
|
|
@ -660,24 +663,31 @@ subroutine material_parseTexture(myFile,myPart)
|
|
|
|
|
100 end subroutine material_parseTexture
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
!> @brief populates the grains
|
|
|
|
|
!> @details populates the grains by identifying active microstructure/homogenization pairs,
|
|
|
|
|
!! calculates the volume of the grains and deals with texture components and hybridIA
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
subroutine material_populateGrains
|
|
|
|
|
!*********************************************************************
|
|
|
|
|
|
|
|
|
|
use math, only: math_sampleRandomOri, &
|
|
|
|
|
use math, only: &
|
|
|
|
|
math_sampleRandomOri, &
|
|
|
|
|
math_sampleGaussOri, &
|
|
|
|
|
math_sampleFiberOri, &
|
|
|
|
|
math_symmetricEulers
|
|
|
|
|
use mesh, only: mesh_element, &
|
|
|
|
|
use mesh, only: &
|
|
|
|
|
mesh_element, &
|
|
|
|
|
mesh_maxNips, &
|
|
|
|
|
mesh_NcpElems, &
|
|
|
|
|
mesh_ipVolume, &
|
|
|
|
|
FE_Nips, &
|
|
|
|
|
FE_geomtype
|
|
|
|
|
use IO, only: IO_error, &
|
|
|
|
|
use IO, only: &
|
|
|
|
|
IO_error, &
|
|
|
|
|
IO_hybridIA
|
|
|
|
|
use FEsolving, only: FEsolving_execIP
|
|
|
|
|
use debug, only: debug_level, &
|
|
|
|
|
use FEsolving, only: &
|
|
|
|
|
FEsolving_execIP
|
|
|
|
|
use debug, only: &
|
|
|
|
|
debug_level, &
|
|
|
|
|
debug_material, &
|
|
|
|
|
debug_levelBasic
|
|
|
|
|
|
|
|
|
@ -707,6 +717,7 @@ subroutine material_populateGrains
|
|
|
|
|
allocate(Ngrains(material_Nhomogenization,material_Nmicrostructure)); Ngrains = 0_pInt
|
|
|
|
|
allocate(Nelems(material_Nhomogenization,material_Nmicrostructure)); Nelems = 0_pInt
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! precounting of elements for each homog/micro pair
|
|
|
|
|
do e = 1_pInt, mesh_NcpElems
|
|
|
|
|
homog = mesh_element(3,e)
|
|
|
|
@ -717,9 +728,9 @@ subroutine material_populateGrains
|
|
|
|
|
allocate(elemsOfHomogMicro(maxval(Nelems),material_Nhomogenization,material_Nmicrostructure))
|
|
|
|
|
elemsOfHomogMicro = 0_pInt
|
|
|
|
|
|
|
|
|
|
Nelems = 0_pInt ! reuse as counter
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! identify maximum grain count per IP (from element) and find grains per homog/micro pair
|
|
|
|
|
Nelems = 0_pInt ! reuse as counter
|
|
|
|
|
do e = 1_pInt,mesh_NcpElems
|
|
|
|
|
t = FE_geomtype(mesh_element(2,e))
|
|
|
|
|
homog = mesh_element(3,e)
|
|
|
|
@ -764,7 +775,8 @@ subroutine material_populateGrains
|
|
|
|
|
!$OMP END CRITICAL (write2out)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
! ---------------------------------------------------------------------------- calculate volume of each grain
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! calculate volume of each grain
|
|
|
|
|
volumeOfGrain = 0.0_pReal
|
|
|
|
|
grain = 0_pInt
|
|
|
|
|
do hme = 1_pInt, Nelems(homog,micro)
|
|
|
|
@ -782,7 +794,8 @@ subroutine material_populateGrains
|
|
|
|
|
endif
|
|
|
|
|
enddo
|
|
|
|
|
|
|
|
|
|
! ---------------------------------------------------------------------------- divide myNgrains as best over constituents
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! divide myNgrains as best over constituents
|
|
|
|
|
NgrainsOfConstituent = 0_pInt
|
|
|
|
|
forall (i = 1_pInt:microstructure_Nconstituents(micro)) &
|
|
|
|
|
NgrainsOfConstituent(i) = nint(microstructure_fraction(i,micro) * myNgrains, pInt) ! do rounding integer conversion
|
|
|
|
@ -798,13 +811,13 @@ subroutine material_populateGrains
|
|
|
|
|
enddo
|
|
|
|
|
NgrainsOfConstituent(t) = NgrainsOfConstituent(t) + sgn ! change that by one
|
|
|
|
|
enddo
|
|
|
|
|
! ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
phaseOfGrain = 0_pInt
|
|
|
|
|
textureOfGrain = 0_pInt
|
|
|
|
|
orientationOfGrain = 0.0_pReal
|
|
|
|
|
grain = 0_pInt ! reset microstructure grain index
|
|
|
|
|
|
|
|
|
|
do i = 1_pInt,microstructure_Nconstituents(micro) ! loop over constituents
|
|
|
|
|
constituents: do i = 1_pInt,microstructure_Nconstituents(micro) ! loop over constituents
|
|
|
|
|
phaseID = microstructure_phase(i,micro)
|
|
|
|
|
textureID = microstructure_texture(i,micro)
|
|
|
|
|
phaseOfGrain(grain+1_pInt:grain+NgrainsOfConstituent(i)) = phaseID ! assign resp. phase
|
|
|
|
@ -814,9 +827,9 @@ subroutine material_populateGrains
|
|
|
|
|
real(texture_symmetry(textureID),pReal),pInt) ! max number of unique orientations (excl. symmetry)
|
|
|
|
|
|
|
|
|
|
constituentGrain = 0_pInt ! constituent grain index
|
|
|
|
|
! ---------
|
|
|
|
|
if (texture_ODFfile(textureID) == '') then ! dealing with texture components
|
|
|
|
|
! ---------
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! dealing with texture components
|
|
|
|
|
if (texture_ODFfile(textureID) == '') then
|
|
|
|
|
do t = 1_pInt,texture_Ngauss(textureID) ! loop over Gauss components
|
|
|
|
|
do g = 1_pInt,int(myNorientations*texture_Gauss(5,t,textureID),pInt) ! loop over required grain count
|
|
|
|
|
orientationOfGrain(:,grain+constituentGrain+g) = &
|
|
|
|
@ -839,15 +852,14 @@ subroutine material_populateGrains
|
|
|
|
|
do j = constituentGrain+1_pInt,myNorientations ! fill remainder with random
|
|
|
|
|
orientationOfGrain(:,grain+j) = math_sampleRandomOri()
|
|
|
|
|
enddo
|
|
|
|
|
! ---------
|
|
|
|
|
else ! hybrid IA
|
|
|
|
|
! ---------
|
|
|
|
|
else
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! hybrid IA
|
|
|
|
|
orientationOfGrain(:,grain+1:grain+myNorientations) = IO_hybridIA(myNorientations,texture_ODFfile(textureID))
|
|
|
|
|
if (all(orientationOfGrain(:,grain+1) == -1.0_pReal)) call IO_error(156_pInt)
|
|
|
|
|
constituentGrain = constituentGrain + myNorientations
|
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
! ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
symExtension = texture_symmetry(textureID) - 1_pInt
|
|
|
|
|
if (symExtension > 0_pInt) then ! sample symmetry
|
|
|
|
|
constituentGrain = NgrainsOfConstituent(i)-myNorientations ! calc remainder of array
|
|
|
|
@ -864,10 +876,11 @@ subroutine material_populateGrains
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
grain = grain + NgrainsOfConstituent(i) ! advance microstructure grain index
|
|
|
|
|
enddo ! constituent
|
|
|
|
|
enddo constituents
|
|
|
|
|
|
|
|
|
|
! ----------------------------------------------------------------------------
|
|
|
|
|
if (.not. microstructure_elemhomo(micro)) then ! unless element homogeneous, reshuffle grains
|
|
|
|
|
|
|
|
|
|
! unless element homogeneous, reshuffle grains
|
|
|
|
|
if (.not. microstructure_elemhomo(micro)) then
|
|
|
|
|
do i=1_pInt,myNgrains-1_pInt ! walk thru grains
|
|
|
|
|
call random_number(rnd)
|
|
|
|
|
t = nint(rnd*(myNgrains-i)+i+0.5_pReal,pInt) ! select a grain in remaining list
|
|
|
|
@ -882,10 +895,9 @@ subroutine material_populateGrains
|
|
|
|
|
orientationOfGrain(:,i) = orientation
|
|
|
|
|
enddo
|
|
|
|
|
endif
|
|
|
|
|
!calc fraction after weighing with volumePerGrain
|
|
|
|
|
!exchange in MC steps to improve result...
|
|
|
|
|
|
|
|
|
|
! ----------------------------------------------------------------------------
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
|
! calc fraction after weighing with volumePerGrain, exchange in MC steps to improve result...
|
|
|
|
|
grain = 0_pInt
|
|
|
|
|
do hme = 1_pInt, Nelems(homog,micro)
|
|
|
|
|
e = elemsOfHomogMicro(hme,homog,micro) ! only perform calculations for elements with homog, micro combinations which is indexed in cpElemsindex
|
|
|
|
|