Taylor homogenization is now called isostrain, changed material.config accordingly.
corrected error message in case of unknown homogenization
This commit is contained in:
parent
9d4521b7ec
commit
db731a4be3
|
@ -790,7 +790,7 @@ END FUNCTION
|
||||||
case (200)
|
case (200)
|
||||||
msg = 'Unknown constitution specified'
|
msg = 'Unknown constitution specified'
|
||||||
case (201)
|
case (201)
|
||||||
msg = 'Unknown lattice type specified'
|
msg = 'Unknown homogenization specified'
|
||||||
case (202)
|
case (202)
|
||||||
msg = 'Number of slip systems too small'
|
msg = 'Number of slip systems too small'
|
||||||
case (203)
|
case (203)
|
||||||
|
|
|
@ -109,7 +109,7 @@ subroutine homogenization_init()
|
||||||
endif
|
endif
|
||||||
homogenization_sizePostResults(i,e) = homogenization_isostrain_sizePostResults(myInstance)
|
homogenization_sizePostResults(i,e) = homogenization_isostrain_sizePostResults(myInstance)
|
||||||
case default
|
case default
|
||||||
call IO_error(200,ext_msg=homogenization_type(mesh_element(3,e))) ! unknown type 200 is phase!
|
call IO_error(201,ext_msg=homogenization_type(mesh_element(3,e))) ! unknown type 201 is homogenization!
|
||||||
end select
|
end select
|
||||||
enddo
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#####################
|
#####################
|
||||||
|
|
||||||
[SX]
|
[SX]
|
||||||
type Taylor
|
type isostrain
|
||||||
Ngrains 1
|
Ngrains 1
|
||||||
|
|
||||||
[RGC]
|
[RGC]
|
||||||
|
@ -11,7 +11,7 @@ type RGC
|
||||||
Ngrains 8
|
Ngrains 8
|
||||||
|
|
||||||
[Taylor4]
|
[Taylor4]
|
||||||
type Taylor
|
type isostrain
|
||||||
Ngrains 4
|
Ngrains 4
|
||||||
|
|
||||||
#####################
|
#####################
|
||||||
|
|
Loading…
Reference in New Issue