diff --git a/.github/workflows/integrationtest.yml b/.github/workflows/integrationtest.yml index 5dfd4b1e..020c6c8b 100644 --- a/.github/workflows/integrationtest.yml +++ b/.github/workflows/integrationtest.yml @@ -36,6 +36,7 @@ jobs: if: | github.event_name == 'push' || ( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'integration' )) + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/tests/integration/damask/test_backward_compatibility.py b/tests/integration/damask/test_backward_compatibility.py index 4ff4878e..e883c1ad 100644 --- a/tests/integration/damask/test_backward_compatibility.py +++ b/tests/integration/damask/test_backward_compatibility.py @@ -141,14 +141,12 @@ def test_elastoplasticity_isotropic(self): type="isotropic", dot_gamma_0=0.001, n=20.0, - xi_0=0.3e6, - xi_inf=0.6e6, + xi_0=0.85e6, + xi_inf=1.6e6, a=2.0, - h_0=1.0e6, # hardening modulus + h_0=5.0e6, # hardening modulus M=1.0, h=1.0, - dilatation=True, - output=["xi"], ) phase = self.project.continuum.damask.Phase( composition="Aluminum", @@ -173,19 +171,19 @@ def test_elastoplasticity_isotropic(self): load_step = [ { "mech_bc_dict": { - "dot_F": [1e-2, 0, 0, 0, "x", 0, 0, 0, "x"], + "dot_F": [1e-3, 0, 0, 0, "x", 0, 0, 0, "x"], "P": ["x", "x", "x", "x", 0, "x", "x", "x", 0], }, - "discretization": {"t": 20.0, "N": 100}, - "additional": {"f_out": 5}, + "discretization": {"t": 10.0, "N": 40}, + "additional": {"f_out": 4}, }, { "mech_bc_dict": { "dot_F": [1e-2, 0, 0, 0, "x", 0, 0, 0, "x"], "P": ["x", "x", "x", "x", 0, "x", "x", "x", 0], }, - "discretization": {"t": 60.0, "N": 200}, - "additional": {"f_out": 5}, + "discretization": {"t": 60.0, "N": 60}, + "additional": {"f_out": 4}, }, ] solver = job.list_solvers()[0] # choose the mechanis solver