consistent string length (de-facto standard 65536)
This commit is contained in:
parent
bed9220597
commit
367e6a4eee
|
@ -225,7 +225,7 @@ module material
|
||||||
phase_localPlasticity !< flags phases with local constitutive law
|
phase_localPlasticity !< flags phases with local constitutive law
|
||||||
|
|
||||||
|
|
||||||
character(len=256), dimension(:), allocatable, private :: &
|
character(len=65536), dimension(:), allocatable, private :: &
|
||||||
texture_ODFfile !< name of each ODF file
|
texture_ODFfile !< name of each ODF file
|
||||||
|
|
||||||
integer(pInt), private :: &
|
integer(pInt), private :: &
|
||||||
|
@ -760,7 +760,7 @@ subroutine material_parsePhase
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
integer(pInt) :: sourceCtr, kinematicsCtr, stiffDegradationCtr, p
|
integer(pInt) :: sourceCtr, kinematicsCtr, stiffDegradationCtr, p
|
||||||
character(len=256), dimension(:), allocatable :: str
|
character(len=65536), dimension(:), allocatable :: str
|
||||||
|
|
||||||
|
|
||||||
allocate(phase_elasticity(material_Nphase),source=ELASTICITY_undefined_ID)
|
allocate(phase_elasticity(material_Nphase),source=ELASTICITY_undefined_ID)
|
||||||
|
|
Loading…
Reference in New Issue