consistent string length (de-facto standard 65536)

This commit is contained in:
Martin Diehl 2018-06-21 22:39:18 +02:00
parent bed9220597
commit 367e6a4eee
1 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ module material
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
integer(pInt), private :: &
@ -760,7 +760,7 @@ subroutine material_parsePhase
implicit none
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)