diff --git a/PRIVATE b/PRIVATE index 3f915ee49..18dea4a43 160000 --- a/PRIVATE +++ b/PRIVATE @@ -1 +1 @@ -Subproject commit 3f915ee49eb7e5e26d4b9b5e5712de9e05e64d83 +Subproject commit 18dea4a43c94b04e4c5cc3d193298ef796de7d18 diff --git a/examples/SpectralMethod/Polycrystal/material.yaml b/examples/SpectralMethod/Polycrystal/material.yaml index e54eec436..09176d531 100644 --- a/examples/SpectralMethod/Polycrystal/material.yaml +++ b/examples/SpectralMethod/Polycrystal/material.yaml @@ -2,7 +2,7 @@ homogenization: SX: N_constituents: 1 - mechanics: {type: none} + mechanics: {type: pass} material: - homogenization: SX diff --git a/python/tests/reference/ConfigMaterial/material.yaml b/python/tests/reference/ConfigMaterial/material.yaml index 1da30535a..48ebd98e3 100644 --- a/python/tests/reference/ConfigMaterial/material.yaml +++ b/python/tests/reference/ConfigMaterial/material.yaml @@ -1,7 +1,7 @@ homogenization: SX: N_constituents: 1 - mechanics: {type: none} + mechanics: {type: pass} Taylor: N_constituents: 2 mechanics: {type: isostrain} diff --git a/src/material.f90 b/src/material.f90 index 3a4c910d9..ccc6898be 100644 --- a/src/material.f90 +++ b/src/material.f90 @@ -147,7 +147,7 @@ subroutine material_parseHomogenization homog => material_homogenization%get(h) homogMech => homog%get('mechanics') select case (homogMech%get_asString('type')) - case('none') + case('pass') homogenization_type(h) = HOMOGENIZATION_NONE_ID case('isostrain') homogenization_type(h) = HOMOGENIZATION_ISOSTRAIN_ID