minor fixes
This commit is contained in:
parent
5657119b11
commit
05d980f1e3
|
@ -1224,17 +1224,16 @@ subroutine field_putDAMAGE(ip,el,fieldDamageValue) ! naming scheme
|
|||
implicit none
|
||||
integer(pInt), intent(in) :: &
|
||||
ip, & !< integration point number
|
||||
el, &
|
||||
el
|
||||
real(pReal), intent(in) :: &
|
||||
fieldDamageValue
|
||||
|
||||
integer(pInt) :: &
|
||||
Ngrains, ipc
|
||||
|
||||
select case(field_damage_type(material_homog(ip,el)))
|
||||
case (FIELD_DAMAGE_NONLOCAL_ID)
|
||||
fieldDamage(material_homog(ip,el))% &
|
||||
state(1:fieldDamage(material_homog(ip,el))%sizeState, &
|
||||
mappingHomogenization(1,ip,el)) = fieldDamageValue
|
||||
state(1, mappingHomogenization(1,ip,el)) = fieldDamageValue
|
||||
|
||||
end select
|
||||
|
||||
|
@ -1298,7 +1297,8 @@ subroutine field_putThermal(ip,el,fieldThermalValue)
|
|||
implicit none
|
||||
integer(pInt), intent(in) :: &
|
||||
ip, & !< integration point number
|
||||
el, &
|
||||
el
|
||||
real(pReal), intent(in) :: &
|
||||
fieldThermalValue
|
||||
integer(pInt) :: &
|
||||
Ngrains, ipc
|
||||
|
@ -1306,8 +1306,7 @@ subroutine field_putThermal(ip,el,fieldThermalValue)
|
|||
select case(field_thermal_type(material_homog(ip,el)))
|
||||
case (FIELD_THERMAL_CONDUCTION_ID)
|
||||
fieldThermal(material_homog(ip,el))% &
|
||||
state(1:fieldThermal(material_homog(ip,el))%sizeState, &
|
||||
mappingHomogenization(1,ip,el)) = fieldThermalValue
|
||||
state(1,mappingHomogenization(1,ip,el)) = fieldThermalValue
|
||||
|
||||
end select
|
||||
|
||||
|
|
|
@ -135,6 +135,9 @@ subroutine homogenization_isostrain_init(fileUnit)
|
|||
tag = IO_lc(IO_stringValue(line,positions,1_pInt)) ! extract key
|
||||
select case(tag)
|
||||
case('type')
|
||||
#ifdef NEWSTATE
|
||||
case('field_damage')
|
||||
#endif
|
||||
case ('(output)')
|
||||
output = output + 1_pInt
|
||||
homogenization_isostrain_output(output,i) = IO_lc(IO_stringValue(line,positions,2_pInt))
|
||||
|
|
Loading…
Reference in New Issue